/*-------------WHY CHOOSE US-----------------*/
.why-choose-us-pro{
  position: relative;
  padding: 100px 0;
  background: url("../images/whyus.jpg") center/cover no-repeat;
}

.why-choose-us-pro .overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,20,40,0.9),
    rgba(10,20,40,0.7)
  );
}

.title-line{
  width: 70px;
  height: 4px;
  background: #0d6efd;
  margin-top: 15px;
}

.choose-card-pro{
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 35px 30px;
  text-align: left;
  transition: all .4s ease;
  height: 100%;
  border: 1px solid rgba(255,255,255,0.12);
}

.choose-card-pro h5{
  color: #fff;
  margin-bottom: 10px;
}

.choose-card-pro p{
  color: #d1d5db;
  font-size: 15px;
}

.icon-box{
  width: 55px;
  height: 55px;
  border-radius: 12px;
  background: rgba(13,110,253,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.icon-box i{
  font-size: 26px;
  color: #0d6efd;
}

.choose-card-pro:hover{
  transform: translateY(-10px);
  background: rgba(255,255,255,0.15);
}

.choose-card-pro.highlight{
  border: 1px solid rgba(13,110,253,0.5);
  background: rgba(13,110,253,0.15);
}
/*-------------WHY CHOOSE US END-----------------*/

/*----------service----------------*/
.services-pro {
  background: linear-gradient(135deg, #f7fbff, #ffffff);
}

.section-line {
  width: 70px;
  height: 4px;
  background: #0d6efd;
  border-radius: 10px;
}

.service-pro-card {
  height: 100%;
  padding: 32px 26px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #e8edf3;
  box-shadow: 0 20px 45px rgba(0,0,0,.06);
  transition: all .4s ease;
  position: relative;
  overflow: hidden;
}

.service-pro-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d6efd, #00c6ff);
  opacity: 0;
  transition: .4s;
}

.service-pro-card * {
  position: relative;
  z-index: 2;
}

.icon-box {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: rgba(13,110,253,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.icon-box i {
  font-size: 26px;
  color: #0d6efd;
}

.service-pro-card h5 {
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 10px;
  color: #0b3c5d;
}

.service-pro-card p {
  font-size: 14.5px;
  color: #6c757d;
  margin: 0;
}

/* HOVER EFFECT */
.service-pro-card:hover::before {
  opacity: 1;
}

.service-pro-card:hover {
  transform: translateY(-12px);
}

.service-pro-card:hover h5,
.service-pro-card:hover p,
.service-pro-card:hover i {
  color: #fff;
}

.service-pro-card:hover .icon-box {
  background: rgba(255,255,255,.2);
}
/*-------------service end------------------*/

/*--------KPI SECTION---------*/
/* KPI SECTION */
.kpi-pro-section{
  padding:110px 0;
  background:#f8fafc;
  position:relative;
  overflow:hidden;
}

.kpi-pro-section::before,
.kpi-pro-section::after{
  content:"";
  position:absolute;
  width:300px;
  height:300px;
  background:rgba(13,110,253,.08);
  filter:blur(90px);
  border-radius:50%;
}

.kpi-pro-section::before{ top:-120px; left:-120px; }
.kpi-pro-section::after{ bottom:-120px; right:-120px; }

/* TEXT */
.section-title{
  font-weight:800;
  color:#0b3c5d;
}

.section-subtitle{
  color:#6c757d;
  max-width:520px;
}

/* KPI CARD */
.kpi-card{
  display:flex;
  align-items:center;
  gap:18px;
  background:#fff;
  padding:20px;
  border-radius:18px;
  border:1px solid #e6ebf1;
  transition:.4s ease;
}

.kpi-card:hover{
  transform:translateY(-6px);
  box-shadow:0 22px 55px rgba(13,110,253,.15);
}

/* CIRCLE */
.kpi-circle{
  position:relative;
  width:120px;
  height:120px;
}

.kpi-circle svg{
  transform:rotate(-90deg);
}

.progress-circle{
  transition:stroke-dashoffset 1.5s ease;
  stroke-linecap:round;
}

.kpi-circle i{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  color:#0d6efd;
  animation:pulse 2.5s infinite;
}

/* INFO */
.kpi-info h3{
  font-size:28px;
  font-weight:800;
  color:#0d6efd;
  margin:0;
}

.kpi-info p{
  margin:0;
  font-size:14.5px;
  color:#6c757d;
}

/* IMAGE */
.kpi-image{
  max-width:90%;
  border-radius:22px;
  box-shadow:0 30px 70px rgba(0,0,0,.18);
}

/* ICON PULSE */
@keyframes pulse{
  0%{transform:scale(1);}
  50%{transform:scale(1.12);}
  100%{transform:scale(1);}
}
/*--------KPI SECTION---------*/

/*--------WHAT MAKES US DIFFERENT----------*/
.difference-section{
  position:relative;
  padding:120px 0;
  background:url("../images/makedif.jpg") center/cover no-repeat fixed;
  overflow:hidden;
}

/* DARK + LIGHT OVERLAY */
.difference-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(135deg, rgba(10,40,80,.85), rgba(0,120,200,.75));
  z-index:0;
}

/* HEADER */
.section-title{
  font-weight:800;
  font-size:38px;
}

.section-divider{
  width:70px;
  height:4px;
  background:#00c6ff;
  border-radius:10px;
  margin:16px auto;
}

.section-subtitle{
  max-width:650px;
  margin:0 auto;
  font-size:16px;
}

/* CARD */
.difference-card{
  background:rgba(255,255,255,.95);
  backdrop-filter:blur(8px);
  padding:36px 26px;
  border-radius:20px;
  text-align:center;
  position:relative;
  transition:.4s ease;
  box-shadow:0 25px 60px rgba(0,0,0,.15);
}

.difference-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,#0d6efd,#00c6ff);
  opacity:0;
  transition:.4s;
  border-radius:20px;
  z-index:0;
}

.difference-card *{
  position:relative;
  z-index:2;
}

.difference-card:hover{
  transform:translateY(-12px);
}

.difference-card:hover::before{
  opacity:1;
}

/* ICON */
.diff-icon{
  width:70px;
  height:70px;
  margin:0 auto 18px;
  border-radius:50%;
  background:rgba(13,110,253,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
  color:#0d6efd;
  transition:.4s;
}

.difference-card:hover .diff-icon{
  background:rgba(255,255,255,.25);
  color:#fff;
  transform:scale(1.15) rotate(8deg);
}

/* TEXT */
.difference-card h3{
  font-size:34px;
  font-weight:800;
  color:#0d6efd;
  margin-bottom:6px;
}

.difference-card p{
  font-size:15px;
  color:#5f6c7b;
}

.difference-card:hover h3,
.difference-card:hover p{
  color:#fff;
}

/* FEATURE CARD */
.difference-card.highlight{
  border:2px solid #0d6efd;
  box-shadow:0 30px 80px rgba(13,110,253,.4);
}
/*--------WHAT MAKES US DIFFERENT END----------*/

/*-----------About Us--------------*/
.about-elite{
  position:relative;
  padding:130px 0;
  background:url('../images/mdbilling.jpg') center/cover no-repeat;
  overflow:hidden;
}

/* dark overlay */
.about-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(120deg, rgba(6,28,54,.92), rgba(6,28,54,.75));
}

/* LEFT */
.about-badge{
  display:inline-block;
  padding:6px 14px;
  border-radius:30px;
  background:rgba(255,255,255,.12);
  color:#9ecbff;
  font-size:13px;
  font-weight:600;
  margin-bottom:18px;
}

.about-heading{
  font-size:40px;
  font-weight:800;
  color:#fff;
  line-height:1.25;
  margin-bottom:20px;
}

.about-desc{
  font-size:16.5px;
  color:#cfd8e3;
  line-height:1.8;
  margin-bottom:28px;
}

.about-features{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.feature-item{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:15px;
  color:#ffffff;
}

.feature-item i{
  font-size:20px;
  color:#4da3ff;
}

/* RIGHT GLASS CARD */
.about-glass-card{
  background:rgba(255,255,255,.12);
  backdrop-filter:blur(18px);
  border-radius:22px;
  padding:40px;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:26px;
  box-shadow:0 40px 90px rgba(0,0,0,.35);
}

/* STATS */
.stat-box h3{
  font-size:34px;
  font-weight:800;
  color:#ffffff;
  margin-bottom:4px;
}

.stat-box p{
  font-size:14px;
  color:#d6e4f5;
  margin:0;
}

/* FLOATING ANIMATION */
.floating{
  animation:floatY 6s ease-in-out infinite;
}

@keyframes floatY{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-18px); }
}

/* subtle entrance animation */
.about-left{
  animation:fadeSlideLeft 1.1s ease forwards;
}

.about-right{
  animation:fadeSlideRight 1.1s ease forwards;
}

@keyframes fadeSlideLeft{
  from{opacity:0; transform:translateX(-40px);}
  to{opacity:1; transform:translateX(0);}
}

@keyframes fadeSlideRight{
  from{opacity:0; transform:translateX(40px);}
  to{opacity:1; transform:translateX(0);}
}
/*-------About us END----------*/

/*---------MEDICAL PRACTICES -------*/
.practice-slider-premium {
  background: #ffffff;
  padding: 100px 0;
}

.section-titlee {
  font-size: 36px;
  font-weight: 700;
  color: #0b1f33;
}

.section-subtitlee {
  max-width: 700px;
  margin: auto;
  font-size: 16px;
  color: #6b7280;
}

.practice-card {
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  border-radius: 18px;
  padding: 40px 25px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.practice-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  opacity: 0;
  transition: 0.4s;
  z-index: 0;
}

.practice-card * {
  position: relative;
  z-index: 1;
}

.practice-card i {
  font-size: 40px;
  color: #2563eb;
  margin-bottom: 15px;
  transition: 0.4s;
}

.practice-card h5 {
  font-weight: 600;
  color: #0b1f33;
  margin-bottom: 10px;
}

.practice-card p {
  font-size: 14px;
  color: #64748b;
}

.practice-card:hover {
  transform: translateY(-12px);
}

.practice-card:hover::before {
  opacity: 1;
}

.practice-card:hover i,
.practice-card:hover h5,
.practice-card:hover p {
  color: #ffffff;
}

/* ARROWS */
.premium-arrow {
  width: 55px;
  height: 55px;
  background: #0b1f33;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.premium-arrow i {
  font-size: 24px;
  color: #fff;
}
/*---------MEDICAL PRACTICES END-------*/


/*--------BOOK CONSULTATION --------*/
.consult-section{
  background:#f4f9fc;
  padding:80px 0;
}

.consult-box{
  background:#ffffff;
  padding:45px;
  border-radius:12px;
  box-shadow:0 10px 35px rgba(0,0,0,0.08);
}

.consult-title{
  font-size:28px;
  font-weight:800;
  color:#0b3c5d;
  margin-bottom:10px;
}

.consult-subtitle{
  font-size:14px;
  color:#6c8ca3;
  margin-bottom:25px;
}

.form-control{
  height:46px;
  font-size:14px;
  border-radius:6px;
}

textarea.form-control{
  height:auto;
}

.consult-btn{
  background:#0b3c5d;
  color:white;
  font-size:15px;
  font-weight:600;
  border-radius:30px;
  padding:12px;
  transition:.3s;
}

.consult-btn:hover{
  background:#145d86;
}
/*--------BOOK CONSULTATION END--------*/

/*----------FAQ SECTION---------*/
/* FAQ SECTION */
.faq-pro {
  background: #ffffff;
  padding: 100px 0;
  font-family: 'Poppins', sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #0b1c2d;
}

.faq-header p {
  color: #5f6f81;
  max-width: 600px;
  margin: 10px auto 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.faq-item {
  background: #f9fbff;
  border-radius: 12px;
  margin-bottom: 18px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.faq-question {
  width: 100%;
  padding: 20px 25px;
  background: none;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: #0b1c2d;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.faq-question span {
  font-size: 22px;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  padding: 0 25px;
  font-size: 15px;
  color: #5f6f81;
  line-height: 1.7;
  overflow: hidden;
  transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 20px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

/* RIGHT IMAGE */
.faq-right {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
  animation: floatImage 6s ease-in-out infinite;
}

.faq-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,28,45,0.35), rgba(0,123,255,0.25));
}

/* IMAGE FLOAT */
@keyframes floatImage {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .faq-right {
    margin-top: 40px;
  }
}
/*----------FAQ SECTION END---------*/

/*--------- FLOATING MESSAGE ICON  -----------*/
/* FLOATING BUTTON */
.floating-message-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(45deg, #0062ff, #00d4ff);
  color: #fff;
  font-size: 28px;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 9999;
}

.floating-message-btn:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

/* MODAL */
.auto-modal {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  animation: fadeInUp 0.5s ease forwards;
}

.auto-modal .modal-header h5 {
  font-size: 1.5rem;
}

.auto-modal .form-control,
.auto-modal .form-select {
  border-radius: 10px;
  border: 1px solid #ced4da;
  padding: 12px 15px;
  transition: all 0.3s ease;
}

.auto-modal .form-control:focus,
.auto-modal .form-select:focus {
  border-color: #0062ff;
  box-shadow: 0 0 10px rgba(0, 98, 255, 0.2);
}

.submit-btn {
  background: linear-gradient(45deg, #0062ff, #00d4ff);
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: linear-gradient(45deg, #0046b3, #00a4cc);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* ANIMATION */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*--------- FLOATING MESSAGE ICON  END-----------*/


