:root {
  --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;
  --default-color: #ffffff;
  --background-blue-color:radial-gradient(ellipse at left, #0a1e4d 60%, #0a2a9c 100%);/* Default color we use for blue background */
  --surface-color: #4668a2;
  --contrast-color: #ffffff;
  --button-color:#ffb300;
  --button-hover-color: #ffcb00;
}

.hero-wrapper {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;  
  justify-content: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.6); /* fallback if no image */
}
.hero-wrapper {
  background: url("../Synaipsys-service-images/virtual-classrooms.png") no-repeat center center/cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6); /* dark overlay */

  display: flex;
  align-items: center;        /* keep vertical center */
  justify-content: flex-start;/* stick left */
  padding-left: 10%;         /* reduce padding to move closer to left edge */   
  padding-bottom: 5%;
}

.hero-content {
  position: relative;
  max-width: 900px; /* smaller width so it hugs the left */
  margin: 0;
  padding: 2rem;
  z-index: 2;
}


.hero-text {
  max-width: 1000px;
}

.hero-text h1 {
  font-size: 3.8rem;
  font-weight: 700;
  color: #ffff;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.hero-text .highlight {
  color: var(--button-color); /* Healthcare blue */
}

.hero-text p {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 1.8rem;
  color: #ddd;
  line-height: 1.8;
}

.cta-btn {
  background: var(--button-color);
  color: #fff;
  padding: 0.8rem 1.8rem;
  border-radius: 25px;
  border: none;
  font-size: 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: var(--button-hover-color);
  transform: translateY(-2px);
}
/* ================== RESPONSIVE MEDIA QUERIES ================== */

/* Tablets */
@media (max-width: 1024px) {
  .hero-overlay {
    padding-left: 6%;
    padding-right: 6%;
  }
  .hero-content {
    max-width: 700px;
    padding: 1.5rem;
  }
  .hero-text h1 {
    font-size: 2.8rem;
    line-height: 1.2;
  }
  .hero-text p {
    font-size: 1.1  rem;
  }
  .cta-btn {
    font-size: 1.2rem;
    padding: 0.7rem 1.5rem;
  }
}

/* Mobiles */
@media (max-width: 768px) {
  .hero-wrapper {
    padding: 3rem 1.2rem;
    text-align: center;
  }
  .hero-overlay {
    justify-content: center;
    padding: 2rem 1rem;
  }
  .hero-content {
    max-width: 100%;
    padding: 0;
  }
  .hero-text h1 {
    font-size: 2.8rem;
    line-height: 1.3;
  }
  .hero-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
  }
  .cta-btn {
    font-size: 1.1rem;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
  }
}

/* ================= industry stack section ================= */

/* Section Base */
.ehr-tech-section {
  padding: 60px 20px;
  background: #fdf6ec;
  text-align: center;
  overflow: hidden;
}
.ehr-tech-link{
color: black !important;
  -webkit-text-fill-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;
}

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

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

.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; /* increased from 80px */
  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%); } /* only half, because we duplicated */
}



/* ================= Industry Overview (Highlight Style) ================= */
.industry-overview-alt {
  padding: 100px 8%;
  background: #fff;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.overview-header {
  max-width: 800px;
  margin: 0 auto 60px auto;
}

.overview-header .subtitle {
  color: var(--button-color);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 24px;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.overview-header .title {
  font-size: 46px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.overview-header .description {
  color: #444;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}

/* ---------- Features Row ---------- */
.features-row {
  display: grid;
  align-content: center;
  max-width: 1350px;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin: 0 auto; /* centers the grid horizontally */
}

.feature-box {
  background: #fff;
  padding: 30px 20px;
  border-radius: 18px;
  border: 1px solid #e2e6ea;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 1px 2px 18px orange;
}

.feature-box .icon {
  font-size: 32px;
  margin-bottom: 15px;
}

.feature-box h3 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.feature-box p {
  font-size: 15px;
  font-weight: 500;
  color: #555;
  line-height: 1.6;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .features-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-row {
    grid-template-columns: 1fr;
  }
}




/* 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: rgb(236, 234, 234);
  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;
}






/* ================= EHR FAQ Section ================= */
.ehr-faq-section {
  background: #fff;
  padding: 60px 20px;
  font-family: 'Inter', sans-serif;
}

.ehr-faq-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
.ehr-faq-wrapper h2 {
  font-size: 3.0rem;
  font-weight: 700;
  text-align: center;
  color: #1d3557;
  margin-bottom: 15px;
}

.ehr-faq-subtitle {
  text-align: center;
  color: #444;
  margin-bottom: 40px;
  font-size: 1.1rem;
  line-height: 1.6;
}


/* FAQ Item */
.ehr-faq-item {
  background: #fff;
  border-radius: 15px;
  margin: 0 auto 20px auto; /* centers the item */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  
  max-width: 1200px; /* increase this to make it wider */
  width: 95%; /* responsive width */
}

/* Question Section */
.ehr-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.3rem;
  color: #1b1b1b;
  background: black;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ehr-faq-toggle {
  background: none;
  border: none;
  font-size: 1.7rem;
  font-weight: 600;
  color: orange;
  cursor: pointer;
  -webkit-text-fill-color: orange; /* force color */
  -webkit-background-clip: initial; /* reset any clipping */
}


/* Answer Section */
.ehr-faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  background: #f9fcff !important;
  -webkit-backdrop-color: #f9fcff;
  color: #333;
  font-size: 1.1rem;
  line-height: 1.6;
}

.ehr-faq-answer p,
.ehr-faq-answer ul {
  margin: 15px 0;
}

.ehr-faq-answer ul {
  padding-left: 20px;
  list-style: disc;
}

/* Active FAQ Answer */
.ehr-faq-item.active .ehr-faq-answer {
  max-height: 500px; /* adjust if answers are longer */
  padding: 15px 25px 25px 25px;
}

/* Gradient bullets for lists */
.ehr-faq-answer ul li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 10px;
}

.ehr-faq-answer ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  background: #fffdfb;
  border-radius: 50%;
}

/* Responsive */
@media (max-width: 768px) {
  .ehr-faq-question {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .ehr-faq-toggle {
    margin-top: 10px;
  }
}



