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

a {
  text-decoration: none !important;
}



/* ================= CORE VALUES ================= */
.core-values {
  background: #ffffff;
  padding: 80px 0;
}

/* ===== HEADER ===== */
.core-values-head {
  max-width: 900px;
  margin: 0 auto 70px;
  text-align: center;
}

.core-values-head h2 {
  font-size: 40px;
  font-weight: 600;
  color: #4f7cff;
  margin-bottom: 14px;
}

.core-values-head p {
  font-size: 16px;
  line-height: 1.75;
  color: #666;
}

/* ===== MAIN GRID ===== */
.core-values-main {
  max-width: 1320px;
  margin: auto;
  padding: 0 6%;
  display: grid;
  grid-template-columns: 58% 42%;
  align-items: center;
  gap: 60px;
}

/* ===== LEFT IMAGE ===== */
.core-values-left img {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  object-fit: cover;
  max-height: 500px;
}

/* ===== RIGHT CONTENT ===== */
.core-values-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 60px;
  row-gap: 50px;
}

.value-box {
  text-align: center;
}

.value-box i {
  font-size: 58px;
  color: #4f7cff;
  margin-bottom: 20px;
}

.value-box h4 {
  font-size: 20px;
  font-weight: 600;
  color: #2b2b2b;
  margin-bottom: 10px;
}

.value-box p {
  font-size: 15px;
  line-height: 1.65;
  color: #666;
}

/* ===== RESPONSIVE ===== */
@media(max-width:1024px) {
  .core-values-main {
    grid-template-columns: 1fr;
  }

  .core-values-right {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:640px) {
  .core-values-right {
    grid-template-columns: 1fr;
  }

  .core-values-head h2 {
    font-size: 30px;
  }
}







































/* ===== OUR VALUES SECTION ===== */
.values-section {
  background: #ffffff;
  padding: 80px 6%;
  margin-top: 47px;

}

.values-container {
  max-width: 1400px;
  margin: auto;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  overflow: hidden;
}

/* ===== LEFT SIDE ===== */
.values-left {
  width: 65%;
  padding: 60px;
}

.values-left h2 {
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
  color: #4f7cff;
}

.values-left h2 span {
  font-weight: 400;
}

.values-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

/* ===== CONTENT BOX ===== */
.values-box {
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
/* 
.value-item {
  display: flex;
  gap: 18px;
} */
/* 
.value-icon {
  width: 115px;
  height: 90px;
  flex-shrink: 0;
  margin-left: -50px;
} */

/* .value-icon img {
  width: 100%;
  height: 100%;
  margin-top: -20px;
} */

.value-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  margin-left: -30px;
}


.value-item p {
  font-size: 15px;
  /* line-height: 1.6; */
  color: #555;
  margin-left: -70px;
  text-align: justify;
}

/* ===== RIGHT IMAGE ===== */
.values-right {
  width: 35%;
}

.values-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 300px;
  border-bottom-left-radius: 300px;
}


/* ICON + TITLE INLINE FIX (ALL DEVICES) */
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.value-icon {
  width: 90px;
  height: 90px;
  margin: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -25px;
}

.value-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ================= FINAL 100% RESPONSIVE CODE ================= */


/* ================= LARGE SCREENS ================= */
@media (max-width: 1200px) {
  .values-left {
    padding: 50px;
  }

  .values-box {
    gap: 30px;
  }
}

/* ================= LAPTOPS ================= */
@media (max-width: 1024px) {
  .values-left h2 {
    font-size: 32px;
  }

  .values-intro {
    font-size: 15px;
  }

  .value-item h4 {
    font-size: 17px;
  }

  .value-item p {
    font-size: 14px;
  }
}



/* ================= TABLETS ================= */
@media (max-width: 992px) {
  .values-section {
    padding: 60px 4%;
  }

  .values-container {
    flex-direction: column;
  }

  .values-left,
  .values-right {
    width: 100%;
  }

  .values-left {
    padding: 40px;
  }

  .values-box {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .values-right img {
    height: 350px;
    border-radius: 0;
  }

  .value-icon {
    width: 60px;
    height: 60px;
  }
}

/* ================= LARGE MOBILE ================= */
@media (max-width: 768px) {
  .values-left {
    padding: 30px 25px;
  }

  .values-left h2 {
    font-size: 28px;
  }

  .values-intro {
    font-size: 14px;
  }

  .values-box {
    gap: 24px;
  }

  .value-icon {
    width: 55px;
    height: 55px;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 576px) {
  .values-section {
    padding: 40px 20px;
  }

  .values-left {
    padding: 25px 20px;
  }

  .values-left h2 {
    font-size: 24px;
  }

  .values-intro {
    font-size: 13.5px;
    line-height: 1.6;
  }

  .value-item {
    flex-direction: row;
    gap: 12px;
  }

  .value-icon {
    width: 52px;
    height: 52px;
    margin-top: -10px;
  }

  .value-item h4 {
    font-size: 16px;
    margin-left: -10px;
  }

  .value-item p {
    font-size: 13.5px;
    margin-left: -50px;
  }

  .values-right img {
    height: 260px;
  }
}

/* ================= EXTRA SMALL DEVICES ================= */
@media (max-width: 400px) {
  .values-left h2 {
    font-size: 22px;
  }

  .values-box {
    padding: 20px;
  }

  .value-icon {
    width: 50px;
    height: 50px;
  }

  .values-right img {
    height: 220px;
  }
}






































        /* =========================
   MEDSOFT BOOKING SECTION
========================= */

.medsoft-booking-section{
  padding:40px 0;
}

.medsoft-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:40px;
  align-items:start;
}

/* =========================
   LEFT GRID
========================= */

.medsoft-left-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}

.medsoft-card{
  border-radius:16px;
  padding:22px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  min-height:110px;
}

.medsoft-card h3{
  font-size:22px;
  margin-bottom:6px;
  color:#111;
}

.medsoft-card p{
  font-size:15px;
  color:#444;
}

/* =========================
   ICON CIRCLE
========================= */

.medsoft-icon{
  width:48px;
  height:48px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
}

.medsoft-icon i{
  font-size:22px;
  color:#4a4a4a;
}

/* =========================
   CARD COLORS (SAME AS UI)
========================= */

.medsoft-appointment{
  background:#fdfdf0;
  border:1px solid #e7ebc8;
}

.medsoft-appointment .medsoft-icon{
  background:#e7efb5;
}

.medsoft-hospital{
  background:#eefaff;
  border:1px solid #cdeefe;
}

.medsoft-hospital .medsoft-icon{
  background:#e2f5ff;
}

.medsoft-specialities{
  background:#f7f7ff;
  border:1px solid #dcdcff;
}

.medsoft-specialities .medsoft-icon{
  background:#ecebff;
}

.medsoft-doctors{
  background:#fff3ef;
  border:1px solid #ffd9cb;
}

.medsoft-doctors .medsoft-icon{
  background:#ffe5db;
}

/* =========================
   RIGHT SIDE
========================= */

.medsoft-right h2{
  font-size:32px;
  color:#111;
  margin-bottom:24px;
}

.medsoft-help-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}

.medsoft-help-card{
  border:2px solid #d8f1e5;
  border-radius:16px;
  padding:40px 20px;
  text-align:center;
}

.medsoft-help-card h4{
  font-size:20px;
  color:#111;
}

/* BIG ICONS */

.medsoft-big-icon{
  font-size:64px;
  color:#22b573;
  margin-bottom:16px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px){
  .medsoft-container{
    grid-template-columns:1fr;
  }
}

@media(max-width:576px){
  .medsoft-left-grid,
  .medsoft-help-grid{
    grid-template-columns:1fr;
  }
}































































/* ================= MEDSOFT PARTNER CTA ================= */
.medsoft-partner-cta {
  width: 90%;
  background: #eaf0ff;
  border-radius: 22px;
  padding: 0px 5%;
  margin: 0 auto;
  height: 63vh;
  margin-top: 50px;
}

.medsoft-cta-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* ===== LEFT CONTENT ===== */
.medsoft-cta-content {
  flex: 1;
}

.medsoft-cta-content h2 {
  font-size: 39px;
  font-weight: 700;
  color: #111827;
  line-height: 1.25;
  margin-top: 25px;
}

.medsoft-cta-content p {
  font-size: 19px;
  color: #374151;
  line-height: 1.6;
  margin-top: 10px;
  margin-bottom: 30px;
}

/* ===== BUTTON ===== */
.medsoft-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 42px;
  background: #4f7cff;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 40px;
}

/* ===== RIGHT IMAGE ===== */
.medsoft-cta-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;

}

.medsoft-cta-image img {
  max-width: 860px;
  width: 100%;
  height: 340px;
  /* margin-bottom: -25px; */
  margin-top: 25px;
  border-radius: 20px;
  margin-left: 90px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);

}
/* ================= RESPONSIVE FIX ================= */

/* Tablets & small laptops */
@media (max-width: 1200px) {
  .medsoft-partner-cta {
    height: auto; /* FIX: height issue */
    padding: 40px 5%;
  }

  .medsoft-cta-image img {
    margin-left: 0; /* FIX */
    height: auto;
    max-width: 100%;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .medsoft-cta-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .medsoft-cta-content {
    max-width: 100%;
  }

  .medsoft-cta-image {
    width: 100%;
    margin-top: 30px;
  }

  .medsoft-cta-image img {
    width: 100%;
    max-width: 520px;
    height: auto; /* IMPORTANT */
    margin: 0;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .medsoft-partner-cta {
    padding: 30px 6%;
    border-radius: 16px;
  }

  .medsoft-cta-content h2 {
    font-size: 26px;
    line-height: 1.3;
  }

  .medsoft-cta-content p {
    font-size: 15px;
  }

  .medsoft-cta-btn {
    padding: 14px 28px;
    font-size: 15px;
  }

  .medsoft-cta-image img {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
  }
}
































#scrollProgress {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  cursor: pointer;
  z-index: 999;
}

#scrollProgress svg {
  transform: rotate(-90deg);
}

#scrollProgress circle {
  fill: none;
  stroke-width: 4;
}

#scrollProgress circle:first-child {
  stroke: #e5e5e5;
}

#scrollProgress .progress {
  stroke: #f37000;
  stroke-dasharray: 150;
  stroke-dashoffset: 150;
  transition: stroke-dashoffset 0.2s linear;
}

#scrollProgress .arrow {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  color: #000;
}
































/* ================= FAQ SECTION ================= */
.faq-section {
  width: 100%;
  padding: 60px 2%;
  background: #ffffff;
  font-family: "Segoe UI", system-ui, sans-serif;
}

.faq-title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  color: #0d58c1;
  margin-bottom: 40px;
}

/* ================= FAQ GRID ================= */
.faq-container {
  max-width: 1700px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* ================= FAQ COLUMN ================= */
.faq-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ================= FAQ ITEM ================= */
.faq-item {
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  overflow: hidden;
}

/* ================= QUESTION BUTTON ================= */
.faq-question {
  width: 100%;
  background: #ffffff;
  border: none;
  outline: none;
  padding: 18px 22px;
  font-size: 16px;
  font-weight: 600;
  color: #0b4cc5;
  text-align: left;
  cursor: pointer;
  position: relative;
}

/* ARROW */
.faq-question::after {
  content: "▼";
  position: absolute;
  right: 20px;
  font-size: 14px;
  transition: transform .3s ease;
}

/* ACTIVE STATE */
.faq-item.active .faq-question::after {
  transform: rotate(180deg);
}

/* ================= ANSWER ================= */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  transition: max-height .3s ease, padding .3s ease;
}

/* OPEN ANSWER */
.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 15px 22px 20px;
}

/* ================= FAQ RESPONSIVE ================= */

/* Tablet */
@media (max-width: 1024px) {
  .faq-title {
    font-size: 36px;
  }

  .faq-question {
    font-size: 15px;
    padding: 16px 20px;
  }

  .faq-answer {
    font-size: 14.5px;
  }
}

/* Tablet & Small Screens */
@media (max-width: 900px) {
  .faq-container {
    grid-template-columns: 1fr;
  }

  .faq-section {
    padding: 50px 6%;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .faq-title {
    font-size: 30px;
    margin-bottom: 30px;
  }

  .faq-question {
    font-size: 14.5px;
    padding: 15px 18px;
  }

  .faq-question::after {
    right: 16px;
    font-size: 13px;
  }

  .faq-answer {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .faq-section {
    padding: 40px 5%;
  }

  .faq-question {
    padding: 14px 16px;
  }

  .faq-answer {
    padding: 0 16px;
  }

  .faq-item.active .faq-answer {
    padding: 14px 16px 18px;
  }
}

























.whatsapp-float {
  position: fixed;
  right: 2px;
  bottom: 25px;
  /* scroll button ke neeche */
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  z-index: 9999;
}

.whatsapp-float a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}
















/* Right Button */
.demo-float-btn{
  position:fixed;
  right:0;
  top:50%;
  transform:translateY(-50%);
  background:#174a9b;
  color:#fff;
  padding:14px 10px;
  border-radius:12px 0 0 12px;
  font-weight:600;
  cursor:pointer;
  z-index:9999;

  writing-mode: vertical-rl;
  text-orientation: mixed;
}

/* Overlay */
.popup-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.5);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:10000;
}

.popup-overlay.active{
  display:flex;
}

/* Card */
.popup-card{
  width:90%;
  max-width:360px;
  background:#fff;
  padding:24px;
  border-radius:16px;
  position:relative;
  animation:popupScale .3s ease;
}

@keyframes popupScale{
  from{transform:scale(.85);opacity:0}
  to{transform:scale(1);opacity:1}
}

/* Close */
.popup-close{
  position:absolute;
  top:10px;
  right:12px;
  font-size:22px;
  cursor:pointer;
  color:#174a9b;
}

/* Text */
.popup-card h3{
  margin:0;
  font-size:20px;
  color:#174a9b;
}
.popup-card p{
  margin:6px 0 18px;
  font-size:13px;
  color:#666;
}

/* Form */
.popup-card input,
.popup-card textarea{
  width:100%;
  padding:12px 14px;
  border:1px solid #d6e3ff;
  border-radius:10px;
  font-size:14px;
  margin-bottom:14px;
}

.popup-card textarea{
  resize:none;
  height:90px;
}

.popup-card button{
  width:100%;
  padding:13px;
  background:#174a9b;
  color:#fff;
  border:none;
  border-radius:10px;
  font-size:15px;
  cursor:pointer;
}

/* Mobile */
@media(max-width:480px){
  .popup-card{
    max-width:320px;
  }
}






















/*Process-section*/

.process-section {
  padding: 60px 20px;
  text-align: center;
  font-family: Arial, sans-serif;
  background-color: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  
}

.process-title {
  font-size: 32px;
  font-weight: 700;
  color: #4f7cff;
  margin-bottom: 50px;
}


.process-description{
  margin-top: -40px;
  margin-bottom: 40px;
  font-size: 18px;
}


.process-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.process-item{
    border: 1px solid #ebebeb;
    padding: 30px;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0px 10px 30px rgba(124, 123, 123, 0.08);
}


.process-item h3 i {
  font-size: 20px;          
  color: #0d6efd;          
  margin-right: 8px;        
  vertical-align: middle;
  transition: all 0.3s ease;
}


.process-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 20px 0 10px;
  color: #1f2d3d;
}

.process-item p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

.process-circle {
  width: 60px;
  height: 60px;
  background: #ffff;
  border: 1.5px solid #4f7cff;
  color: #4f7cff;
  border-radius:18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

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

@media (max-width: 575px) {
  .process-wrapper {
    grid-template-columns: 1fr;
  }

  .process-title {
    font-size: 26px;
  }
}

























