/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", system-ui, sans-serif;
}






.hero-banner{
      width: 100%;
      height: 50vh;
      background-image: url("../images/banner.png");
      background-size:contain;
      background-position: center;
      background-repeat: no-repeat;
    }

    /* ================= HERO BANNER – 100% RESPONSIVE ONLY ================= */

/* Ultra large screens */
@media (min-width: 1400px) {
  .hero-banner {
    min-height: 60vh;
    height: auto;
    background-size: contain;
  }
}

/* Large desktops */
@media (max-width: 1399px) {
  .hero-banner {
    min-height: 55vh;
    height: auto;
  }
}

/* Laptops */
@media (max-width: 1200px) {
  .hero-banner {
    min-height: 50vh;
    height: auto;
  }
}

/* Tablets (landscape) */
@media (max-width: 992px) {
  .hero-banner {
    min-height: 42vh;
    background-size: contain;
  }
}

/* Tablets & large mobiles */
@media (max-width: 768px) {
  .hero-banner {
    min-height: 36vh;
    background-size: contain;
  }
}

/* Mobile devices */
@media (max-width: 576px) {
  .hero-banner {
    min-height: 30vh;
    background-size: contain;
  }
}

/* Small & extra small mobiles */
@media (max-width: 400px) {
  .hero-banner {
    min-height: 26vh;
  }
}

/* Very small screens */
@media (max-width: 320px) {
  .hero-banner {
    min-height: 22vh;
  }
}



/* ================= HERO SECTION ================= */
/* .medical-hero {
  width: 100%;
  height: 400px;
  background: url("https://cdn.healcard.com/common_assets/home/1745388285969.webp")
    center/cover no-repeat;
  position: relative;
  background-size: contain;

  margin-bottom: -220px;
  margin-top: -20px;

  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6%;
}


.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  text-align: center;
  color: #ffffff;
}

.hero-content h1 {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.hero-content p {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.7;
  max-width: 850px;
  margin: 0 auto 40px;
  color: #f1f1f1;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.btn-outline {
  padding: 14px 36px;
  border: 2px solid #0073aa;
  color: #ffffff;
  background: #0073aa;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #0a8dca;
  color: #000000;
}



@media (min-width: 1400px){
  .medical-hero{
    min-height:80vh;
  }

  .hero-content{
    max-width:1100px;
  }
}

@media (max-width: 1200px){
  .hero-content h1{
    font-size:clamp(30px, 4.5vw, 56px);
  }

  .hero-content p{
    font-size:18px;
  }
}

@media (max-width: 992px){
  .medical-hero{
    min-height:65vh;
    padding:0 6%;
  }

  .hero-content h1{
    font-size:42px;
  }

  .hero-content p{
    font-size:17px;
    margin-bottom:32px;
  }
}

@media (max-width: 768px){
  .medical-hero{
    min-height:auto;
    padding:80px 6%;
  }

  .hero-content h1{
    font-size:36px;
  }

  .hero-content p{
    font-size:16px;
  }

  .hero-buttons{
    gap:16px;
  }

  .btn-outline{
    width:100%;
    text-align:center;
  }
}

@media (max-width: 480px){
  .hero-content h1{
    font-size:28px;
    letter-spacing:0.5px;
  }

  .hero-content p{
    font-size:15px;
    line-height:1.6;
    margin-bottom:28px;
  }

  .btn-outline{
    padding:13px 28px;
    font-size:13px;
  }
}

@media (max-width: 360px){
  .hero-content h1{
    font-size:24px;
  }

  .hero-content p{
    font-size:14px;
  }
}
 */











 

/* ================= CTA SECTION ================= */
.medsoft-section{
  width:100%;
  padding:65px 5%;
  display:flex;
  justify-content:center;
  background:#f3f7ff;
  margin-top: 45px;
}




/* ================= CTA SECTION ================= */
.medsoft-sections{
  width:100%;
  padding:60px 5%;
  display:flex;
  justify-content:center;
  /* background:#f0f0f0; */
}




/* ================= CTA BOX ================= */
.medsoft-box{
  width:100%;
  max-width:1500px;
  margin:0 auto; 
  max-width: none;
  background:#ffffff;
  padding:56px 70px;
  border-radius:18px;
  text-align:center;
  box-shadow:0 25px 60px rgba(0,0,0,0.1);
}

/* ================= HEADING ================= */
.medsoft-box h2{
  font-size:34px;
  font-weight:500;
  color:#0d58c1;
  margin-bottom:18px;
}

/* ================= DESCRIPTION ================= */
.medsoft-box p{
  font-size:18px;
  /* line-height:1.6; */
  color:#4b5563;
  max-width:1900px;
  margin:0 auto 12px;
}



/* ================= RESPONSIVE ================= */
@media(max-width:768px){
  .medsoft-box{
    padding:40px 26px;
  }

  .medsoft-box h2{
    font-size:28px;
  }

}
































/* ================= LEFT RIGHT CARD SECTION ================= */
.lr-card-section {
  width: 100%;
  padding: 80px 6%;
  background: #f3f7ff;
}


/* ===== WRAPPER ===== */
.lr-card-wrapper {
  max-width: 1200px;
  margin:0 auto;
  display: flex;
  gap: 24px;
  /* gap between cards */
  align-items: stretch;
}

/* ===== COMMON CARD STYLE ===== */
.lr-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* ===== LEFT CARD (40%) ===== */
.left-card {
  flex: 0 0 40%;
}

/* IMAGE */
.left-card-img {
  width: 100%;
  height: 240px;
  object-fit: contain;
}

/* CONTENT */
.left-card-content {
  padding: 20px;
}

.left-card-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #374151;
}

/* ===== RIGHT CARD (60%) ===== */
.right-card {
  flex: 0 0 60%;
  padding: 32px;
  justify-content: center;
}

.right-card h3 {
  font-size: 26px;
  margin-bottom: 18px;
  color: #0d58c1;
}

/* BULLET POINTS */
.right-card ul {
  padding-left: 20px;
  margin-top: 19px;
}

.right-card ul li {
  font-size: 16px;
  color: #374151;
  margin-bottom: 12px;
  line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .lr-card-wrapper {
    flex-direction: column;
  }

  .left-card,
  .right-card {
    flex: 100%;
  }

  .left-card-img {
    height: 220px;
  }
}













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

/* MAIN WRAPPER */
.medical-contact-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* ================= LEFT INFO ================= */
.medical-contact-info {
  flex: 1;
}

.medical-contact-title {
  font-size: 38px;
  font-weight: 700;
  color: #0073aa;
  margin-bottom: 25px;
}

.medical-contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  color: #6b6fa8;
  font-size: 17px;
  line-height: 1.6;
}

.medical-contact-item .icon {
  font-size: 22px;
  color: #0073aa;
}

.medical-directions-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 18px;
  font-weight: 600;
  color: #ff2b7a;
  text-decoration: none;
}

/* ================= RIGHT FORM ================= */
.medical-appointment-box {
  flex: 1;
  background: #ffffff;
  padding: 40px 35px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.appointment-title {
  text-align: center;
  font-size: 28px;
  font-weight: 500;
  color: #0d58c1;
  margin-bottom: 30px;
}

.medical-appointment-form input,
.medical-appointment-form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 18px;
  border: 1px solid #999;
  border-radius: 8px;
  font-size: 16px;
  outline: none;
}

.medical-appointment-form textarea {
  min-height: 110px;
  resize: none;
}

.medical-appointment-form button {
  display: block;
  margin: 10px auto 0;
  padding: 12px 40px;
  background: #0d58c1;
  color: #ffffff;
  font-size: 18px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}


/* ===== CONTACT (INFO + FORM) RESPONSIVE ===== */
@media (max-width: 900px) {
  .medical-contact-section {
    padding: 50px 16px;
  }

  .medical-contact-wrapper {
    flex-direction: column;
    gap: 36px;
  }

  .medical-contact-info,
  .medical-appointment-box {
    width: 100%;
  }

  .medical-contact-title {
    font-size: 30px;
  }

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

@media (max-width: 600px) {
  .medical-contact-section {
    padding: 40px 14px;
  }

  .medical-contact-title {
    font-size: 24px;
  }

  .medical-contact-item {
    font-size: 15px;
  }

  .medical-appointment-box {
    padding: 26px 20px;
  }

  .appointment-title {
    font-size: 22px;
  }

  .medical-appointment-form input,
  .medical-appointment-form textarea {
    font-size: 15px;
  }
}

@media (max-width: 420px) {
  .medical-contact-title {
    font-size: 22px;
  }

  .appointment-title {
    font-size: 20px;
  }
}


















































/* ================= CONTACT SECTION ================= */
.medical-contact-section {
  width: 100%;
  background: #ffffff;
  padding: 60px 0;
}

/* MAIN CONTAINER */
.medical-contact-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  gap: 50px;
  align-items: center;
}

/* LEFT INFO */
.medical-contact-info {
  flex: 1;
}

.medical-contact-info h2 {
  font-size: 30px;
  line-height: 1.1;
  color: #0d58c1;
  /* brownish tone like screenshot */
  /* font-weight: 400; */
  margin-bottom: 40px;
}

/* INFO BLOCKS */
.info-block {
  margin-bottom: 30px;
}

.info-block .label {
  display: block;
  font-size: 20px;
  letter-spacing: 2px;
  color: #b8a7a0;
  margin-bottom: 10px;
}

.info-block p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}




/* RIGHT MAP */
/* .medical-contact-map {
  flex: 1.2;
  height: 500px;
  border-radius: 4px;
  overflow: hidden;
}

.medical-contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
} */
/* ===== CONTACT (INFO + MAP) RESPONSIVE ===== */
@media (max-width: 992px) {
  .medical-contact-section {
    padding: 50px 16px;
  }

  .medical-contact-container {
    flex-direction: column;
    gap: 32px;
  }

  .medical-contact-info,
  .medical-contact-map {
    width: 100%;
  }

  .medical-contact-info h2 {
    font-size: 34px;
    margin-bottom: 28px;
  }

  .medical-contact-map {
    height: 360px;
  }
}

@media (max-width: 600px) {
  .medical-contact-section {
    padding: 40px 14px;
  }

  .medical-contact-info h2 {
    font-size: 28px;
  }

  .info-block p {
    font-size: 15px;
  }

  .medical-contact-map {
    height: 300px;
  }
}

@media (max-width: 420px) {
  .medical-contact-info h2 {
    font-size: 24px;
  }

  .medical-contact-map {
    height: 260px;
  }
}

/* Map visibility safety */
/* .medical-contact-map,
.medical-contact-map iframe {
  width:100%;
  min-height:260px;
  display:block;
} */










/* ===== GLOBAL MOBILE WIDTH SAFETY ===== */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
}









/* ================= MAP WIDTH CONTROL ================= */
/* 
.medical-contact-map{
  width:100%;
  max-width:1140px;      
  height:420px;
  margin:60px auto 0;  
  border-radius:12px;
  overflow:hidden;
  box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.25);

}

.medical-contact-map iframe{
  width:100%;
  height:100%;
  border:0;
}

@media (max-width: 992px){
  .medical-contact-map{
    max-width:100%;
    height:360px;
  }
}

@media (max-width: 600px){
  .medical-contact-map{
    height:300px;
  }
} */





.map-section {
  width: 100%;
  min-height: 550px;
  margin-top: 40px;
  background: #f3f7ff;

  display: flex;
  justify-content: center;
  align-items: center;
}

/* Shadow wrapper */
.map-shadow-wrap {
  width: 100%;
  max-width: 1300px;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

/* Map box */
.medical-contact-map {
  height: 420px;
  overflow: hidden;
  border-radius: 12px;
}

.medical-contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}






















/* ================= CONTACT SECTION ================= */
.medical-contact-section {
  width: 100%;
  padding: 70px 6%;
  background: #ffffff;
}

.medical-contact-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* LEFT INFO */
.medical-contact-info {
  flex: 1;
}

.medical-contact-title {
  font-size: 36px;
  font-weight: 600;
  color: #0073aa;
  margin-bottom: 30px;
}

.medical-contact-item {
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.6;
  color: #374151;
}

.info-block {
  margin-top: 35px;
}

.info-block .label {
  display: block;
  font-size: 20px;
  letter-spacing: 1.5px;
  font-weight: 600;
  color: #0d58c1;
  margin-bottom: 6px;
}

.info-block p {
  font-size: 15px;
  color: #374151;
}




/* RIGHT FORM */
.medical-appointment-box {
  flex: 1;
  background: #ffffff;
  padding: 36px 34px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.appointment-title {
  text-align: center;
  font-size: 26px;
  font-weight: 500;
  color: #0d58c1;
  margin-bottom: 10px;
}

.appointment-subtitle {
  text-align: center;
  font-size: 14.5px;
  color: #6b7280;
  margin-bottom: 25px;
}

.medical-appointment-form input,
.medical-appointment-form textarea,
.medical-appointment-form select {
  width: 100%;
  padding: 13px 14px;
  margin-bottom: 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 15px;
}

.medical-appointment-form textarea {
  min-height: 100px;
  resize: none;
}

.form-row {
  display: flex;
  gap: 4%;
  flex: 1;
}

/* 

.medical-appointment-form textarea::placeholder{
  color:#9ca3af;
} */



.medical-appointment-form select{
  color:#6b7280;
  border:1px solid #d1d5db;
  outline: none;
}


.medical-appointment-form select option{
  color:#0d0d0d;
}




.form-row select{
  appearance:none;
  -webkit-appearance:none;

  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%230d58c1'%3E%3Cpath d='M2 5l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat:no-repeat;

  /* 👇 yahan sirf position change karo */
  background-position:right 20px center;
}



/* 
.form-row select{
  flex: 1;
  width:48%;
  color:#6b7280;
} */

/* 
.form-row select{
  width:100%;
  appearance:none;
  -webkit-appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg  xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%230d58c1'%3E%3Cpath d='M2 5l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 16px center;
} */




.medical-appointment-form button {
  margin: 10px auto 0;
  display: block;
  padding: 12px 36px;
  background: #0073aa;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

/* RESPONSIVE */
@media(max-width:900px) {
  .medical-contact-wrapper {
    flex-direction: column;
    gap: 40px;
  }
}

@media(max-width:600px) {
  .medical-contact-title {
    font-size: 28px;
  }

  .appointment-title {
    font-size: 22px;
  }

  .form-row {
    flex-direction: column;
  }

  .form-row select {
    width: 100%;
  }
}




















/* ===== HERO SECTION ===== */
.bp-hero{
  padding:60px 0;
  background:#fff;
  font-family: Arial, Helvetica, sans-serif;
}

.bp-wrap{
  width:1200px;
  margin:auto;
  display:flex;
  gap:60px;
  align-items:flex-start;
}

/* LEFT */
.bp-left h1{
  font-size:52px;
  line-height:1.15;
  font-weight:800;
  color:#111;
}

.bp-left h1 span{
  color:#1c4fa3;
}

.bp-desc{
  margin-top:28px;
  font-size:20px;
  color:#000;
}

.bp-list{
  margin-top:18px;
  padding:0;
  list-style:none;
}

.bp-list li{
  font-size:19px;
  margin-bottom:14px;
  padding-left:20px;
  position:relative;
}

.bp-list li::before{
  content:"›";
  position:absolute;
  left:0;
  font-size:26px;
}

.bp-logos{
  margin-top:40px;
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.bp-logos img{
  height:52px;
}

/* ===== FORM ===== */
.exact-form{
  width:430px;
  background:#fff;
  padding:34px 15px;
  border-radius:18px;
  box-shadow:0 14px 40px rgba(0,0,0,.12);
}

/* INPUTS */
.f-input{
  width:100%;
  height:54px;
  border:1px solid #cfdcf2;
  border-radius:14px;
  padding:0 18px;
  font-size:15px;
  color:#222;
  outline:none;
  margin-bottom:16px;
  background:#fff;
}

.f-input::placeholder{
  color:#6f7f95;
}

.f-row{
  display:flex;
  gap:14px;
}

/* TEXTAREA */
.f-textarea{
  width:100%;
  height:130px;
  border:1px solid #cfdcf2;
  border-radius:14px;
  padding:16px 18px;
  font-size:15px;
  resize:none;
  margin-bottom:18px;
}

.f-textarea::placeholder{
  color:#6f7f95;
}

/* CHECKBOX */
.f-check{
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-size:14px;
  color:#222;
  line-height:1.4;
  margin-bottom:22px;
}

.f-check input{
  margin-top:3px;
}

/* BUTTON */
.f-btn{
  width:100%;
  height:58px;
  background:#1c4fa3;
  color:#fff;
  font-size:18px;
  font-weight:600;
  border:none;
  border-radius:12px;
  cursor:pointer;
}

/* ===== RESPONSIVE ===== */
@media(max-width:1200px){
  .bp-wrap{
    width:100%;
    padding:0 20px;
  }
}

@media(max-width:900px){
  .bp-wrap{
    flex-direction:column;
  }
}

@media(max-width:520px){
  .f-row{
    flex-direction:column;
  }
  .exact-form{
    width:100%;
  }
}
