@charset "UTF-8";

/*-----------------------------------------------------------------------------------
    Theme Name: Medical Student Rotation
    Description: Custom CSS for Medical Student Rotation
    Version: 1.0
-----------------------------------------------------------------------------------*/

/*----------------------------------------*/
/* 01. THEME DEFAULT CSS START
/*----------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

:root {
  --it-ff-body: 'Nunito', sans-serif;
  --it-ff-heading: 'Raleway', sans-serif;
  --it-common-white: #ffffff;
  --it-common-black: #1F242C;
  --it-common-black-2: #00102F;
  --it-common-sky: #28B6F6;
  --it-common-green: #19776B;
  --it-common-red: #EE344E;
  --it-heading-primary: #00102F;
  --it-text-body: #111;
  --it-grey-1: #F0F5FD;
  --it-grey-2: #F1F3FD;
  --it-grey-3: #EEF5FF;
  --it-grey-4: #f8f8f8;
  --it-theme-1: #076CEC;
  --it-theme-2: #04B3BF;
  --it-theme-3: #EFA286;
}
   background: transparent;
#cr-wrap {
    --cr-blue:   #2c80b9;
    --cr-red:    #e63946;
    --cr-gold:   #ffb703;
    --cr-purple: #7209b7;
    --cr-green:  #2a9d8f;
    --cr-im:     #4299e1;
    --cr-spec:   #9f7aea;
    --cr-hosp:   #38a169;
    --cr-bg:     #f8fafc;
    --cr-card:   #ffffff;
    --cr-dark:   #2d3748;
    --cr-light:  #718096;
    --cr-border: #e2e8f0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--cr-dark);
    background: var(--cr-bg);
    padding: 20px;
    box-sizing: border-box;
}

/*---------------------------------
	typography css start 
---------------------------------*/
html, body {
  height: 100%;
}

body {
  font-family: var(--it-ff-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--it-text-body);
  line-height: 1.3;
  overflow-x: hidden;
}

body, html {
  overflow-x: hidden;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--it-ff-heading);
  color: var(--it-heading-primary);
  margin-top: 0px;
  font-weight: 700;
  line-height: 1.2;
  transition: all 0.3s ease-out 0s;
}

img {
  max-width: 100%;
}

p {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7;
	color:#111 !important;
}

ul {
  margin: 0px;
  padding: 0px;
}

/*----------------------------------------*/
/* 18. hero css start
/*----------------------------------------*/
.it-hero-area {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
  z-index: 1;
}



.it-hero-area::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.75);
  z-index: -1;
}

.it-hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.it-section-subtitle-2 {
  display: inline-block;
  background: rgba(77,166,255,0.1);
  color: #000101;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 12px;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  font-weight: 600;
	margin-left:0px !important
}

.it-hero-title {
  font-size: 60px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #0b1b3f;
}

.it-hero-text p {
  font-size: 18px;
  color: #5c6b8a;
  margin-bottom: 35px;
  line-height: 1.7;
}

.it-hero-button {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

.it-btn-theme {
  background: linear-gradient(135deg, #2f6bff, #4da6ff);
  display: inline-block;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -0.01em;
  border-radius: 5px;
  padding: 20px 40px;
  text-align: center;
  color: var(--it-common-white);
  background-color: var(--it-theme-1);
  overflow: hidden;
}

.it-btn-theme:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(47,107,255,0.5);
  color: var(--it-common-white);
}

.it-hero-video {
  display: flex;
  align-items: center;
  gap: 15px;
}

.play-icon {
  width: 55px;
  height: 55px;
  background: rgba(77,166,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2f6bff;
  font-size: 18px;
  transition: 0.3s;
}

.play-icon:hover {
  background: #2f6bff;
  color: #fff;
  transform: scale(1.1);
}

/*----------------------------------------*/
/* Stats Strip CSS
/*----------------------------------------*/
.stats-strip {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  padding: 40px 0;
}

.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-number {
  font-size: 36px;
  font-weight: 800;
  color: #3b82f6;
  font-family: var(--it-ff-heading);
}

.stat-label {
  font-size: 14px;
  color: #cbd5e1;
  margin-top: 8px;
}

/*----------------------------------------*/
/* MSR Why Choose Section
/*----------------------------------------*/
.msr-why-wrap {
  padding: 88px 0;
  background: none;
}

.section {
  max-width: 1200px;
  margin: 0 auto;
}

.intro {
  margin-bottom: 60px;
  text-align: center;
}

.label {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 30px;
  background: #eef2ff;
  color: #2563eb;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}

.heading {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.02;
  margin-top: 16px;
  color: var(--it-heading-primary);
}

.heading span {
  background: linear-gradient(135deg, #2563eb, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtexts {
  font-size: 16px;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  position: relative;
}

.vs-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0b1220, #1e293b);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  z-index: 5;
  box-shadow: 0 0 0 6px #f6f9ff, 0 12px 40px rgba(0,0,0,0.25);
}

.card {
  border-radius: 22px;
  padding: 34px;
  overflow: hidden;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(14px);
  transition: all 0.35s ease;
}

.card:hover {
  transform: translateY(-10px) scale(1.01);
}

.card--msr {
  border: 1px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(135deg, #3b82f6, #6366f1) border-box;
}

.card--other {
  background: linear-gradient(#fff8f8, #fff8f8) padding-box;
  border: 1px solid #fecaca;
}

.card-header {
  margin-bottom: 26px;
}

.card-eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.card--msr .card-eyebrow { color: #2563eb; }
.card--other .card-eyebrow { color: #dc2626; }

.card-title {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.1;
}

.card-desc {
  font-size: 14px;
  color: #64748b;
  margin-top: 6px;
}

.items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border-radius: 12px;
  transition: all 0.25s ease;
}

.card--msr .item { background: #f0f9ff; }
.card--other .item { background: #fff1f2; }

.item-icon {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.card--msr .item-icon {
  background: #dcfce7;
  color: #16a34a;
}

.card--other .item-icon {
  background: #fee2e2;
  color: #dc2626;
}

.item-text {
  font-size: 14px;
  color: var(--it-common-black);
  line-height: 1.4;
}

/*----------------------------------------*/
/* Application Process Section
/*----------------------------------------*/
.sections {
  max-width: 1150px;
  margin: auto;
  padding: 20px 20px;
}

.headerr {
  text-align: center;
  margin-bottom: 60px;
}

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

.process-card {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  transition: all 0.4s;
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,119,182,0.15);
}

.process-img-wrap {
  position: relative;
  height: 190px;
  overflow: hidden;
}

.process-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
  border-radius: 13px 13px 0px 0px;
}

.process-card:hover .process-img-wrap img {
  transform: scale(1.07);
}

.process-num {
  position: absolute;
  top: 12px;
  right: 14px;
  font-weight: 900;
  font-size: 28px;
  color: rgba(255,255,255,0.5);
}

.process-body {
  padding: 22px;
}

.process-body h4 {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 8px;
  color: #00102f;
}

.process-body p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 14px;
}

.process-btn {
  font-size: 12px;
  color: #076CEC;
  font-weight: 700;
  text-decoration: none;
}

/*----------------------------------------*/
/* Affiliation Strips
/*----------------------------------------*/
.affiliation-strip {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 12px 0;
  background: linear-gradient(90deg, #0b1220, #0f172a);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.affiliation-track {
  display: flex;
  width: max-content;
  animation: scrollLeft 25s linear infinite;
  position: relative;
  z-index: 3;
}

.reverse .affiliation-track {
  animation: scrollRight 25s linear infinite;
}

.affiliation-items {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 0 40px;
}

.affiliation-items span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 500;
  color: #cbd5f5;
  white-space: nowrap;
}

.affiliation-items i {
  font-size: 12px;
  color: #3b82f6;
  background: rgba(59,130,246,0.15);
  padding: 6px;
  border-radius: 50%;
}

@keyframes scrollLeft {
  0% { transform: translate3d(0,0,0); }
  100% { transform: translate3d(-50%,0,0); }
}

@keyframes scrollRight {
  0% { transform: translate3d(-50%,0,0); }
  100% { transform: translate3d(0,0,0); }
}

.affiliation-strip:hover .affiliation-track {
  animation-play-state: paused;
}

/*----------------------------------------*/
/* Doctor Section
/*----------------------------------------*/
.doctor-section {
  background: #fff;
  border-top: 1px solid #e2e8f0;
  padding: 80px 20px;
}

.doctor-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.doctor-image-wrap {
  position: relative;
}

.doctor-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  border-radius: 16px;
  border: 2px solid #e2e8f0;
  box-shadow: 0 16px 60px rgba(0,119,182,0.15);
  display: block;
}

.doctor-badge-wrap {
  position: absolute;
  bottom: -17px;
  right: -18px;
  background: linear-gradient(135deg, #076CEC, #00102f);
  color: #fff;
  border-radius: 12px;
  padding: 16px 20px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0,119,182,0.35);
}

.doctor-badge-wrap .num {
  font-weight: 900;
  font-size: 26px;
  line-height: 1;
}

.doctor-badge-wrap .lbl {
  font-size: 10px;
  font-weight: 700;
  opacity: 0.9;
}

.doctor-content h2 {
  font-weight: 900;
  font-size: clamp(26px, 3vw, 44px);
  line-height: 1.1;
  margin-bottom: 4px;
  color: #00102f;
}

.doctor-title {
  color: #076CEC;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.doctor-role {
  color: #64748b;
  font-size: 13px;
  margin-bottom: 24px;
}

.doctor-content p {
  color: #111;
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 24px;
}

.doctor-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 36px;
}

.doctor-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #1F242C;
}

.doctor-feature .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #EFA286;
  flex-shrink: 0;
}

.btn-primary {
  background: linear-gradient(135deg, #076CEC, #04B3BF);
  padding: 14px 28px;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(7,108,236,0.3);
}

/*----------------------------------------*/
/* Gallery Section
/*----------------------------------------*/
.msr-services {
  background: transparent;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.msrg-gallery-header {
  text-align: center;
  margin-bottom: 50px;
}

.msrg-section-tag {
  font-size: 11px;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: #94a3b8;
  display: inline-block;
}

.msrg-section-title {
  font-size: 44px;
  font-weight: 900;
  margin: 16px 0 10px;
  color: #0f172a;
}

.msrg-section-sub {
  font-size: 15px;
  color: #64748b;
  max-width: 520px;
  margin: 0 auto;
}

.msrg-gallery-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.msrg-gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.msrg-gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s;
}

.msrg-gallery-item:hover img {
  transform: scale(1.05);
}

.msrg-gallery-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 11px;
  padding: 5px 12px;
  border-radius: 20px;
}

/*----------------------------------------*/
/* Testimonials Section
/*----------------------------------------*/
.msr-testi-section {
  background: transparent;
  padding: 0px 0;
  padding-bottom: 80px;
  padding-top: 0px;
  position: relative;
  overflow: hidden;
}

.testi-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.testi-top {
  text-align: center;
  margin-bottom: 52px;
}

.testi-top .eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #2563eb;
  margin-bottom: 10px;
}

.testi-top h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.testi-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.testi-video-panel {
  background: #0f172a;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15,23,42,0.18);
}

.testi-video-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.testi-vtab {
  flex: 1;
  padding: 12px 8px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  cursor: pointer;
  text-align: center;
  background: transparent;
  border: none;
}

.testi-vtab.active {
  color: #fff;
  border-bottom: 2px solid #2563eb;
}

.testi-video-frame {
  position: relative;
  background: #000;
  aspect-ratio: 16/9;
}

.testi-video-frame video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.testi-vid-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.38);
  cursor: pointer;
}

.testi-vid-overlay.hidden {
  display: none;
}

.play-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.txt-testi-card {
  background: #fff;
  border-radius: 16px;
  padding: 22px 24px;
  border: 1px solid rgba(37,99,235,0.1);
  box-shadow: 0 4px 24px rgba(37,99,235,0.06);
  margin-bottom: 20px;
}

.txt-testi-card p {
  font-size: 13.5px;
  color: #111;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 14px;
}

.txt-testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testi-google-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  background: #f8fafc;
  border-radius: 10px;
  padding: 12px 16px;
  border: 1px solid #e2e8f0;
}

/*----------------------------------------*/
/* Contact Form Section
/*----------------------------------------*/
.msr-luxury-contact {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: #050d1a;
}

.mlc-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #1e293b 0%, #334155 100%);
}

.mlc-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}

.mlc-left h2 {
  font-size: 52px;
  font-weight: 600;
  line-height: 1.1;
  color: #f1f5f9;
  margin-bottom: 10px;
}

.mlc-left p {
  font-size: 14px;
  color: #fff;
  line-height: 1.75;
  margin-bottom: 36px;
}

.mlc-form-card {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 24px;
  padding: 40px 36px;
  backdrop-filter: blur(20px);
}

.mlc-form-title {
  font-size: 22px;
  font-weight: 600;
  color: #9393FA;
  margin-bottom: 4px;
}

.mlc-form-sub {
  font-size: 12px;
  color: #fff;
  margin-bottom: 28px;
}

.mlc-fg input,
.mlc-fg select,
.mlc-fg textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 13.5px;
  color: #fff;
  outline: none;
}

.mlc-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #1d4ed8 0%, #7c3aed 100%);
  border: none;
  border-radius: 12px;
  padding: 15px 24px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
}

/*----------------------------------------*/
/* Responsive
/*----------------------------------------*/
@media (max-width: 991px) {
  .it-hero-title {
    font-size: 42px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cards {
    grid-template-columns: 1fr;
  }
  
  .vs-badge {
    display: none;
  }
  
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .doctor-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .msrg-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testi-main-grid {
    grid-template-columns: 1fr;
  }
  
  .mlc-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .it-hero-area {
    padding: 40px 0;
  }
  
  .it-hero-title {
    font-size: 15px;
  }
	.it-section-subtitle-2{
		font-size: 8px;
        margin-bottom: 10px;
        margin-left: 0px;
		
	}

	.it-hero-text p{
		font-size:8px;
	}
	.play-icon{
		width:10px;
		height:10px;
		font-size:10px;
	}
	.it-hero-button{
		display:flex;
	}
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
  }
  
  .msrg-gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .mlc-inner {
    padding: 50px 20px;
  }
  
  .mlc-left h2 {
    font-size: 36px;
  }
}

/* Animation */
@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}

#heroHeading::after {
 content: "|" ;
  margin-left: 5px ;
  opacity: 1 ;
}

.headers {
  margin-bottom: 60px;
  animation: fadeUp 0.6s ease both;
	background: none !important ;
}

.step:nth-child(5) {
	background-image: url('https://nilanktech.in/test/medicalrotation/wp-content/uploads/2026/03/Submit-Document.jpeg') !important;
}
.rotation-cards:nth-child(1) {
    background-image: url('https://nilanktech.in/test/medicalrotation/wp-content/uploads/2026/03/Combination-Rotation.jpeg') !important ;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.rotation-cards:nth-child(2) {
    background-image: url('https://nilanktech.in/test/medicalrotation/wp-content/uploads/2026/03/Combination-Rotation-2.jpeg') !important ;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.rotation-cards:nth-child(3) {
    background-image: url('https://nilanktech.in/test/medicalrotation/wp-content/uploads/2026/03/@Advent-Health-Glen-Oaks-Hospital.jpeg')   !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}





/*# sourceMappingURL=main.css.map */

/* ========================= */
/* SECTION (MODERN GRADIENT) */
/* ========================= */

.contact-wrapper {
    padding: 90px 0 !important; /* reduced spacing */
    background: linear-gradient(135deg, #4f46e5, #3b82f6) !important;
    position: relative !important;
    overflow: hidden !important;
}

/* glow effect */
.contact-wrapper::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.15), transparent);
    top: -150px;
    left: -150px;
    filter: blur(80px);
}

/* ========================= */
/* LEFT CONTENT */
/* ========================= */

.contact-left {
    color: #fff;
    padding-right: 20px;
}

.contact-subtitle {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c7d2fe;
}

.contact-title {
  color: #fff;
    font-size: 50px;
    font-weight: 800;
    margin: 12px 0;
    line-height: 1.2;
}

.contact-desc {
    font-size: 15px;
    color: #e0e7ff;
    margin-bottom: 25px;
}

/* ========================= */
/* CONTACT INFO CARDS */
/* ========================= */

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.1);
    padding: 18px 20px;
    border-radius: 14px;
    margin-bottom: 15px; /* tighter spacing */
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.contact-info-card:hover {
    transform: translateY(-3px);
}

.contact-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background: linear-gradient(135deg, #6366f1, #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.contact-text h5 {
    font-size: 14px;
    margin-bottom: 3px;
}

.contact-text a {
    font-size: 13px;
    color: #e0e7ff;
    display: block;
}

/* ========================= */
/* FORM CARD */
/* ========================= */

.contact-form-card {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(18px);
    padding: 30px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.2);
}

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

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px; /* reduced gap */
}

.form-group.full {
    grid-column: span 2;
}
.form-group.fulls {
    grid-column: span 2;
	margin-top: 0px;
}

/* ========================= */
/* INPUT */
/* ========================= */

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.2);
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
}

/* placeholder fix */
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: transparent;
}

/* focus */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    background: rgba(255,255,255,0.3);
    border-color: #fff;
}

/* ========================= */
/* FLOAT LABEL FIX */
/* ========================= */

.form-group label {
    position: absolute;
    top: -9px;
    left: 6px;
    font-size: 11px ;
    color: rgba(255,255,255,0.7);
    pointer-events: none;
    transition: 0.25s;
}

/* working float */
.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -7px;
    left: 10px;
    font-size: 11px;
    background: #4f46e5;
    padding: 0 6px;
    border-radius: 6px;
    color: #fff;
}


.lable{
   top: -7px;
    left: 10px;
    font-size: 11px;
    background: #4f46e5;
    padding: 0 6px;
    border-radius: 6px;
    color: #fff;

}

.labels{
	 top: -7px;
    left: 10px;
    font-size: 11px;
    background: #4f46e5;
    padding: 0 6px;
    border-radius: 6px;
    color: #fff !important;
}

.nice-select{
    width: 589px !important;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
    margin-top: 0px;
}

/* ========================= */
/* SELECT */
/* ========================= */

.form-group select {
    appearance: none;
    cursor: pointer;
}

/* arrow */
.form-group.select::after {
    content: "▾";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
}

/* ========================= */
/* BUTTON */
/* ========================= */

.btn-submit {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #6366f1, #3b82f6);
    transition: 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

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

@media (max-width: 991px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-left {
        text-align: center;
        margin-bottom: 30px;
    }

    .contact-title {
        font-size: 30px;
    }
}
.video-info{
	display:none !important;
}

.cardb-h4{
	color:#fff !important;
}
.cardb-p{
	color:#fff !important;
}

.card-badge {
  position: absolute !important;
  top: 18px !important;
  right: 18px !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #cbd5e1 !important;
}

/* ICON */
.icon {
  width: 54px !important;
  height: 54px !important;
  border-radius: 14px !important;
  background: linear-gradient(135deg, #dbeafe, #e0e7ff) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 22px !important;
  margin-bottom: 18px !important;
}

.auto-slide-indicator{
	display:none !important;
}


/* Video Testimonials Section - Classy & Unique */
 /* Video Testimonials Section - 3 Videos at Once */
    .video-testimonials-section {
      padding: 100px 0 !important;
      background: var(--light-bg) !important;
      position: relative !important;
      overflow: hidden !important;
    }

    .video-testimonials-section::before {
      content: ''!important;
      position: absolute !important;
      top: 0!important;
      left: 0 !important;
      right: 0 !important;
      height: 1px !important;
      background: linear-gradient(90deg, transparent, var(--accent), transparent) !important;
    }

    .video-testimonials-section::after {
      content: '“'!important;
      position: absolute !important;
      bottom: 20px !important;
      right: 20px !important;
      font-size: 180px !important;
      font-family: 'Cinzel', serif !important;
      color: rgba(212, 175, 55, 0.03) !important;
      pointer-events: none !important;
      line-height: 1 !important;
    }

    /* Elegant Slider Container */
    .testimonial-slider-container {
      position: relative !important;
      max-width: 1300px !important;
      margin: 0 auto !important;
      padding: 0 56px !important;
    } 

    /* Main Slider */
    .testimonial-slider {
      overflow: hidden !important;
      border-radius: 32px !important;
      position: relative !important;
    }

    .slider-track {
      display: flex;
      transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      gap: 24px;
    }

    /* 3 videos at once - each takes 1/3 of width minus gap */
    .testimonial-slide {
      flex: 0 0 calc((100% - 48px) / 3);
      min-width: calc((100% - 48px) / 3);
    }

    /* Video Card - Luxurious Design */
    .video-card {
      background: #FFFFFF;
      border-radius: 32px;
      overflow: hidden;
      box-shadow: var(--shadow-elegant);
      transition: all 0.4s ease;
      border: 1px solid rgba(212, 175, 55, 0.2);
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .video-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-luxury);
      border-color: var(--accent);
    }

    /* Video Wrapper with Gold Accent */
    .video-wrapper {
      position: relative !important;
      width: 100% !important;
      padding-bottom: 56.25% !important;
      background: linear-gradient(135deg, #1A2C3E, #0F1A24) !important;
      overflow: hidden !important;
      cursor: pointer !important;
    }

    .video-wrapper video {
      position: absolute !important;
      top: 0 !important;
      left: 0 !important;
      width: 100% !important;
      height: 100% !important;
      object-fit: cover !important;
      transition: transform 0.5s ease !important;
    }

    .video-card:hover .video-wrapper video {
      transform: scale(1.02) !important;
    }

    /* Play Overlay - Iconic Gold Circle */
    .play-overlay {
      position: absolute !important;
      top: 0 !important;
      left: 0 !important;
      width: 100% !important;
      height: 100% !important;
      background: rgba(0, 0, 0, 0.4) !important;
      backdrop-filter: blur(3px) !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      cursor: pointer !important;
      z-index: 10 !important;
      transition: all 0.4s ease !important;
    }

    .play-overlay i {
      font-size: 3.5rem;
      color: var(--accent);
      filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
      transition: all 0.3s ease;
    }

    .play-overlay::before {
      content: '';
      position: absolute;
      width: 70px;
      height: 70px;
      border-radius: 50%;
      background: rgba(212, 175, 55, 0.2);
      animation: pulse 2s infinite;
      z-index: -1;
    }

    @keyframes pulse {
      0% { transform: scale(0.8); opacity: 0.6; }
      100% { transform: scale(1.4); opacity: 0; }
    }

    .play-overlay:hover {
      background: rgba(0, 0, 0, 0.55);
    }

    .play-overlay:hover i {
      transform: scale(1.1);
      color: #FFD966;
    }

    .video-wrapper.playing .play-overlay {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }

    /* Video Info - Elegant Details */
    .video-info {
      padding: 24px 20px 28px;
      text-align: center;
      background: linear-gradient(180deg, #FFFFFF 0%, #FEFAF0 100%);
      position: relative;
      flex: 1;
    }

    .video-info::before {
      content: '';
      position: absolute;
      top: -2px;
      left: 15%;
      right: 15%;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--accent), var(--accent), transparent);
      border-radius: 3px;
    }

    /* Iconic Avatar with Gold Border */
    .client-avatar {
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, var(--primary), #4A2C24);
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
      border: 2px solid var(--accent);
      box-shadow: 0 8px 20px rgba(212, 175, 55, 0.25);
      transition: transform 0.3s ease;
    }

    .video-card:hover .client-avatar {
      transform: scale(1.05);
    }

    .client-avatar i {
      font-size: 1.6rem;
      color: var(--accent);
    }

    .client-name {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 4px;
      letter-spacing: -0.3px;
    }

    .client-role {
      font-size: 0.7rem;
      color: var(--accent);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 12px;
    }

    .quote-text {
      font-style: italic;
      color: var(--text-muted);
      line-height: 1.6;
      font-size: 0.85rem;
      position: relative;
    }

    .quote-text i:first-child {
      color: var(--accent);
      margin-right: 4px;
      opacity: 0.7;
      font-size: 0.7rem;
    }

    .quote-text i:last-child {
      color: var(--accent);
      margin-left: 4px;
      opacity: 0.7;
      font-size: 0.7rem;
    }

    /* Gold Signature Line */
    .quote-text::after {
      content: '';
      display: block;
      width: 35px;
      height: 1px;
      background: var(--accent);
      margin: 12px auto 0;
      opacity: 0.5;
    }

    /* Navigation Buttons - Iconic Gold Circles */
    .slider-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 48px;
      height: 48px;
      background: white;
      border: 2px solid var(--accent);
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      color: var(--accent);
      transition: all 0.3s ease;
      z-index: 20;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      backdrop-filter: blur(4px);
    }

    .slider-btn:hover {
      background: var(--accent);
      color: white;
      transform: translateY(-50%) scale(1.08);
      border-color: var(--accent);
      box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    }

    .slider-prev {
      left: -24px;
    }

    .slider-next {
      right: -24px;
    }

    /* Dots Navigation - Elegant */
    .slider-dots {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-top: 48px;
    }

    .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #D4C4A8;
      cursor: pointer;
      transition: all 0.4s ease;
    }

    .dot.active {
      width: 28px;
      background: var(--accent);
      border-radius: 20px;
      box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
    }

    .dot:hover {
      background: var(--accent);
      transform: scale(1.2);
    }

    /* Auto-slide Indicator - Classy */
    .auto-slide-indicator {
      text-align: center;
      margin-top: 28px;
      font-size: 0.75rem;
      color: var(--text-muted);
      letter-spacing: 0.5px;
    }

    .auto-slide-indicator i {
      color: var(--accent);
      margin-right: 6px;
    }

    /* Responsive Design for 3 Videos */
    @media (max-width: 1100px) {
      .testimonial-slider-container {
        padding: 0 48px;
      }
      .testimonial-slide {
        flex: 0 0 calc((100% - 32px) / 2);
        min-width: calc((100% - 32px) / 2);
      }
      .slider-prev { left: -20px; }
      .slider-next { right: -20px; }
    }

    @media (max-width: 768px) {
      		.rotationss-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr) !important;
    gap: 24px;
} 
			{
        padding: 70px 0;
      }
      .testimonial-slider-container {
        padding: 0 40px;
      }
      .testimonial-slide {
        flex: 0 0 100%;
        min-width: 100%;
      }
      .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
      }
			
			.container-strip {
				max-height: auto !important;
				width:490px !important;
			}
      .slider-prev { left: -15px; }
      .slider-next { right: -15px; }
      .video-info {
        padding: 20px 16px 24px;
      }
      .client-avatar {
        width: 52px;
        height: 52px;
      }
      .client-avatar i {
        font-size: 1.3rem;
      }
      .client-name {
        font-size: 1rem;
      }
      .quote-text {
        font-size: 0.8rem;
      }
      .play-overlay i {
        font-size: 2.8rem;
      }
      .play-overlay::before {
        width: 60px;
        height: 60px;
      }
	
    }

    @media (max-width: 480px) {
      .testimonial-slider-container {
        padding: 0 30px;
      }
      .slider-btn {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
      }
      .slider-prev { left: -12px; }
      .slider-next { right: -12px; }
      .video-card {
        border-radius: 24px;
      }
      .section-title {
        font-size: 1.8rem;
      }
    }

    /* Progress Indicator */
    .progress-bar-container {
      width: 100%;
      max-width: 400px;
      margin: 24px auto 0;
      height: 2px;
      background: rgba(212, 175, 55, 0.2);
      border-radius: 2px;
      overflow: hidden;
    }

    .progress-bar {
      height: 100%;
      background: var(--accent);
      width: 0%;
      transition: width 0.1s linear;
      border-radius: 2px;
    }
.email{
	    color: #fff !important;
    outline: none;
    border: none;
    background: transparent;
}

.footer-col-1{
	justify-items:center !important;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px){
.it-footer-text p{
	text-align : center !important;
}
	}

.it-footer-text span {
	text-align:center !important;
}
body{
	 background-image: none !important;
}

#name{
	  /* BACKGROUND IMAGE */
  background-image: url('https://nilanktech.in/test/medicalrotation/wp-content/uploads/2026/04/web-background.png') !important; /* adjust path if needed */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.elementor-element p strong{
	color: #292929 !important;
}
/* 
--------------------------------- */
/* ========================= */
/* FONT IMPORTS - HOMEPAGE ONLY */
/* ========================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Open+Sans:wght@300;400;500;600;700;800&display=swap');

/* ========================= */
/* HOMEPAGE SPECIFIC FONTS */
/* ========================= */

/* Open Sans - Body text on homepage only */
.home .subtextp,
.home .step-desc,
.home .card-desc,
.home .item-text,
.home .contact-desc,
.home .quote-text,
.home .services-cta p,
.home .story-body p,
.home .it-footer-text p,
.home .it-footer-text span {
  font-family: 'Open Sans', sans-serif !important;
  font-weight: 400 !important;
}

/* Montserrat - Headings on homepage only */
.home .headers,
.home .contact-title,
.home .step-title,
.home .cardb-h4,
.home .client-name,
.home .section-title,
.home .rotationss-header h2,
.home .mr-header h2,
.home .services-header h2,
.home .gn-story-section h2,
.home .it-footer-widget-title,
.home .card-title {
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 700 !important;
}

.headers {
  margin-bottom: 60px !important;
  animation: fadeUp 0.6s ease both !important;
  background: none !important;
}

.step:nth-child(5) {
  background-image: url('https://nilanktech.in/test/medicalrotation/wp-content/uploads/2026/03/Submit-Document.jpeg') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.rotation-cards:nth-child(1) {
  background-image: url('https://nilanktech.in/test/medicalrotation/wp-content/uploads/2026/03/Combination-Rotation.jpeg') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.rotation-cards:nth-child(2) {
  background-image: url('https://nilanktech.in/test/medicalrotation/wp-content/uploads/2026/03/Combination-Rotation-2.jpeg') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.rotation-cards:nth-child(3) {
  background-image: url('https://nilanktech.in/test/medicalrotation/wp-content/uploads/2026/03/@Advent-Health-Glen-Oaks-Hospital.jpeg') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}



/* ========================= */
/* SECTION (MODERN GRADIENT) */
/* ========================= */

.contact-wrapper {
  padding: 90px 0 !important;
  background: linear-gradient(135deg, #4f46e5, #3b82f6) !important;
  position: relative !important;
  overflow: hidden !important;
}

.contact-wrapper::before {
  content: "" !important;
  position: absolute !important;
  width: 500px !important;
  height: 500px !important;
  background: radial-gradient(circle, rgba(255,255,255,0.15), transparent) !important;
  top: -150px !important;
  left: -150px !important;
  filter: blur(80px) !important;
}

/* ========================= */
/* LEFT CONTENT */
/* ========================= */

.contact-left {
  color: #fff !important;
  padding-right: 20px !important;
}

.contact-subtitle {
  font-size: 12px !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  color: #c7d2fe !important;
}

.contact-title {
  color: #fff !important;
  font-size: 50px !important;
  font-weight: 800 !important;
  margin: 12px 0 !important;
  line-height: 1.2 !important;
}

.contact-desc {
  font-size: 15px !important;
  color: #e0e7ff !important;
  margin-bottom: 25px !important;
}

/* ========================= */
/* CONTACT INFO CARDS */
/* ========================= */

.contact-info-card {
  display: flex !important;
  align-items: center !important;
  gap: 15px !important;
  background: rgba(255,255,255,0.1) !important;
  padding: 18px 20px !important;
  border-radius: 14px !important;
  margin-bottom: 15px !important;
  backdrop-filter: blur(10px) !important;
  transition: 0.3s !important;
}

.contact-info-card:hover {
  transform: translateY(-3px) !important;
}

.contact-icon {
  width: 45px !important;
  height: 45px !important;
  border-radius: 10px !important;
  background: linear-gradient(135deg, #6366f1, #3b82f6) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #fff !important;
}

.contact-text h5 {
  font-size: 14px !important;
  margin-bottom: 3px !important;
}

.contact-text a {
  font-size: 13px !important;
  color: #e0e7ff !important;
  display: block !important;
}

/* ========================= */
/* FORM CARD */
/* ========================= */

.contact-form-card {
  background: rgba(255,255,255,0.12) !important;
  backdrop-filter: blur(18px) !important;
  padding: 30px !important;
  border-radius: 18px !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
}

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

.form-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 15px !important;
}

.form-group.full {
  grid-column: span 2 !important;
}

.form-group.fulls {
  grid-column: span 2 !important;
  margin-top: 0px !important;
}

/* ========================= */
/* INPUT */
/* ========================= */

.form-group {
  position: relative !important;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100% !important;
  padding: 14px !important;
  border-radius: 10px !important;
  border: 1px solid rgba(255,255,255,0.3) !important;
  background: rgba(255,255,255,0.2) !important;
  color: #fff !important;
  font-size: 14px !important;
  outline: none !important;
  transition: 0.3s !important;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: transparent !important;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  background: rgba(255,255,255,0.3) !important;
  border-color: #fff !important;
}

/* ========================= */
/* FLOAT LABEL FIX */
/* ========================= */

.form-group label {
  position: absolute !important;
  top: -9px !important;
  left: 6px !important;
  font-size: 11px !important;
  color: rgba(255,255,255,0.7) !important;
  pointer-events: none !important;
  transition: 0.25s !important;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -7px !important;
  left: 10px !important;
  font-size: 11px !important;
  background: #4f46e5 !important;
  padding: 0 6px !important;
  border-radius: 6px !important;
  color: #fff !important;
}

.lable {
  top: -7px !important;
  left: 10px !important;
  font-size: 11px !important;
  background: #4f46e5 !important;
  padding: 0 6px !important;
  border-radius: 6px !important;
  color: #fff !important;
}

.labels {
  top: -7px !important;
  left: 10px !important;
  font-size: 11px !important;
  background: #4f46e5 !important;
  padding: 0 6px !important;
  border-radius: 6px !important;
  color: #fff !important;
}

.nice-select {
  width: 589px !important;
  padding: 14px !important;
  border-radius: 10px !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  background: rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
  font-size: 14px !important;
  outline: none !important;
  transition: 0.3s !important;
  margin-top: 0px !important;
}

/* ========================= */
/* SELECT */
/* ========================= */

.form-group select {
  appearance: none !important;
  cursor: pointer !important;
}

.form-group.select::after {
  content: "▾" !important;
  position: absolute !important;
  right: 12px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  color: #fff !important;
}

/* ========================= */
/* BUTTON */
/* ========================= */

.btn-submit {
  width: 100% !important;
  padding: 14px !important;
  border-radius: 10px !important;
  border: none !important;
  font-weight: 600 !important;
  color: #fff !important;
  background: linear-gradient(135deg, #6366f1, #3b82f6) !important;
  transition: 0.3s !important;
}

.btn-submit:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 30px rgba(0,0,0,0.3) !important;
}

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

@media (max-width: 991px) {
  .form-grid {
    grid-template-columns: -1fr !important;
  }
	
  .contact-left {
    text-align: center !important;
    margin-bottom: 30px !important;
  }
  .contact-title {
    font-size: 30px !important;
  }
}

.video-info {
  display: none !important;
}

.cardb-h4 {
  color: #fff !important;
}

.cardb-p {
  color: #fff !important;
}

.card-badge {
  position: absolute !important;
  top: 18px !important;
  right: 18px !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #cbd5e1 !important;
}

.icon {
  width: 54px !important;
  height: 54px !important;
  border-radius: 14px !important;
  background: linear-gradient(135deg, #dbeafe, #e0e7ff) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 22px !important;
  margin-bottom: 18px !important;
}

.auto-slide-indicator {
  display: none !important;
}

/* Video Testimonials Section */
.video-testimonials-section {
  padding: 100px 0 !important;
  background: var(--light-bg) !important;
  position: relative !important;
  overflow: hidden !important;
}

.video-testimonials-section::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 1px !important;
  background: linear-gradient(90deg, transparent, var(--accent), transparent) !important;
}

.video-testimonials-section::after {
  content: '"' !important;
  position: absolute !important;
  bottom: 20px !important;
  right: 20px !important;
  font-size: 180px !important;
  font-family: 'Cinzel', serif !important;
  color: rgba(212, 175, 55, 0.03) !important;
  pointer-events: none !important;
  line-height: 1 !important;
}

.testimonial-slider-container {
  position: relative !important;
  max-width: 1300px !important;
  margin: 0 auto !important;
  padding: 0 56px !important;
}

.testimonial-slider {
  overflow: hidden !important;
  border-radius: 32px !important;
  position: relative !important;
}

.slider-track {
  display: flex !important;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  gap: 24px !important;
}

.testimonial-slide {
  flex: 0 0 calc((100% - 48px) / 3) !important;
  min-width: calc((100% - 48px) / 3) !important;
}

.video-card {
  background: #FFFFFF !important;
  border-radius: 32px !important;
  overflow: hidden !important;
  box-shadow: var(--shadow-elegant) !important;
  transition: all 0.4s ease !important;
  border: 1px solid rgba(212, 175, 55, 0.2) !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
}

.video-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: var(--shadow-luxury) !important;
  border-color: var(--accent) !important;
}

.video-wrapper {
  position: relative !important;
  width: 100% !important;
  padding-bottom: 56.25% !important;
  background: linear-gradient(135deg, #1A2C3E, #0F1A24) !important;
  overflow: hidden !important;
  cursor: pointer !important;
}

.video-wrapper video {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.5s ease !important;
}

.video-card:hover .video-wrapper video {
  transform: scale(1.02) !important;
}

.play-overlay {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(0, 0, 0, 0.4) !important;
  backdrop-filter: blur(3px) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  z-index: 10 !important;
  transition: all 0.4s ease !important;
}

.play-overlay i {
  font-size: 3.5rem !important;
  color: var(--accent) !important;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3)) !important;
  transition: all 0.3s ease !important;
}

.play-overlay::before {
  content: '' !important;
  position: absolute !important;
  width: 70px !important;
  height: 70px !important;
  border-radius: 50% !important;
  background: rgba(212, 175, 55, 0.2) !important;
  animation: pulse 2s infinite !important;
  z-index: -1 !important;
}

@keyframes pulse {
  0% { transform: scale(0.8) !important; opacity: 0.6 !important; }
  100% { transform: scale(1.4) !important; opacity: 0 !important; }
}

.play-overlay:hover {
  background: rgba(0, 0, 0, 0.55) !important;
}

.play-overlay:hover i {
  transform: scale(1.1) !important;
  color: #FFD966 !important;
}

.video-wrapper.playing .play-overlay {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.video-info {
  padding: 24px 20px 28px !important;
  text-align: center !important;
  background: linear-gradient(180deg, #FFFFFF 0%, #FEFAF0 100%) !important;
  position: relative !important;
  flex: 1 !important;
}

.video-info::before {
  content: '' !important;
  position: absolute !important;
  top: -2px !important;
  left: 15% !important;
  right: 15% !important;
  height: 2px !important;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent), transparent) !important;
  border-radius: 3px !important;
}

.client-avatar {
  width: 60px !important;
  height: 60px !important;
  background: linear-gradient(135deg, var(--primary), #4A2C24) !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 16px !important;
  border: 2px solid var(--accent) !important;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.25) !important;
  transition: transform 0.3s ease !important;
}

.video-card:hover .client-avatar {
  transform: scale(1.05) !important;
}

.client-avatar i {
  font-size: 1.6rem !important;
  color: var(--accent) !important;
}

.client-name {
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  color: var(--primary) !important;
  margin-bottom: 4px !important;
  letter-spacing: -0.3px !important;
}

.client-role {
  font-size: 0.7rem !important;
  color: var(--accent) !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  margin-bottom: 12px !important;
}

.quote-text {
  font-style: italic !important;
  color: var(--text-muted) !important;
  line-height: 1.6 !important;
  font-size: 0.85rem !important;
  position: relative !important;
}

.quote-text i:first-child {
  color: var(--accent) !important;
  margin-right: 4px !important;
  opacity: 0.7 !important;
  font-size: 0.7rem !important;
}

.quote-text i:last-child {
  color: var(--accent) !important;
  margin-left: 4px !important;
  opacity: 0.7 !important;
  font-size: 0.7rem !important;
}

.quote-text::after {
  content: '' !important;
  display: block !important;
  width: 35px !important;
  height: 1px !important;
  background: var(--accent) !important;
  margin: 12px auto 0 !important;
  opacity: 0.5 !important;
}

.slider-btn {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 48px !important;
  height: 48px !important;
  background: white !important;
  border: 2px solid var(--accent) !important;
  border-radius: 50% !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.2rem !important;
  color: var(--accent) !important;
  transition: all 0.3s ease !important;
  z-index: 20 !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
  backdrop-filter: blur(4px) !important;
}

.slider-btn:hover {
  background: var(--accent) !important;
  color: white !important;
  transform: translateY(-50%) scale(1.08) !important;
  border-color: var(--accent) !important;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3) !important;
}

.slider-prev {
  left: -24px !important;
}

.slider-next {
  right: -24px !important;
}

.slider-dots {
  display: flex !important;
  justify-content: center !important;
  gap: 12px !important;
  margin-top: 48px !important;
}

.dot {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: #D4C4A8 !important;
  cursor: pointer !important;
  transition: all 0.4s ease !important;
}

.dot.active {
  width: 28px !important;
  background: var(--accent) !important;
  border-radius: 20px !important;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4) !important;
}

.dot:hover {
  background: var(--accent) !important;
  transform: scale(1.2) !important;
}

.auto-slide-indicator {
  text-align: center !important;
  margin-top: 28px !important;
  font-size: 0.75rem !important;
  color: var(--text-muted) !important;
  letter-spacing: 0.5px !important;
}

.auto-slide-indicator i {
  color: var(--accent) !important;
  margin-right: 6px !important;
}

.progress-bar-container {
  width: 100% !important;
  max-width: 400px !important;
  margin: 24px auto 0 !important;
  height: 2px !important;
  background: rgba(212, 175, 55, 0.2) !important;
  border-radius: 2px !important;
  overflow: hidden !important;
}

.progress-bar {
  height: 100% !important;
  background: var(--accent) !important;
  width: 0% !important;
  transition: width 0.1s linear !important;
  border-radius: 2px !important;
}

.email {
  color: #fff !important;
  outline: none !important;
  border: none !important;
  background: transparent !important;
}

.footer-col-1 {
  justify-items: center !important;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .it-footer-text p {
    text-align: center !important;
  }
}

.it-footer-text span {
  text-align: center !important;
}

body {
  background-image: none !important;
}

#name {
  background-image: url('https://nilanktech.in/test/medicalrotation/wp-content/uploads/2026/04/web-background.png') !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-attachment: fixed !important;
}

.elementor-element p strong {
  color: #292929 !important;
}

@media (max-width: 1100px) {
  .testimonial-slider-container {
    padding: 0 48px !important;
  }
  .testimonial-slide {
    flex: 0 0 calc((100% - 32px) / 2) !important;
    min-width: calc((100% - 32px) / 2) !important;
  }
  .slider-prev { left: -20px !important; }
  .slider-next { right: -20px !important; }
}

@media (max-width: 768px) {
	
	.affiliation-strip {
    width: 110% !important;
	}
	
	
  .nice-select {
    width: 240px !important;
  }
	
	.it-header-area.header-black-bg{
		background-color:none !important;
	}
	
	.it-header-bg{
		margin-top: 0px !important;
	}
  .rotationss-grid {
    display: grid !important;
    grid-template-columns: repeat(1, 1fr) !important;
    gap: 24px !important;
  }
  .testimonial-slider-container {
    padding: 0 40px !important;
  }
  .testimonial-slide {
    flex: 0 0 100% !important;
    min-width: 100% !important;
  }
  .slider-btn {
    width: 40px !important;
    height: 40px !important;
    font-size: 1rem !important;
  }
  .slider-prev { left: -15px !important; }
  .slider-next { right: -15px !important; }
  .video-info {
    padding: 20px 16px 24px !important;
  }
  .client-avatar {
    width: 52px !important;
    height: 52px !important;
  }
  .client-avatar i {
    font-size: 1.3rem !important;
  }
  .client-name {
    font-size: 1rem !important;
  }
  .quote-text {
    font-size: 0.8rem !important;
  }
  .play-overlay i {
    font-size: 2.8rem !important;
  }
  .play-overlay::before {
    width: 60px !important;
    height: 60px !important;
  }
  .container-strip {
    max-height: auto !important;
    width: 400px !important;
  }
}

@media (max-width: 480px) {
  .testimonial-slider-container {
    padding: 0 30px !important;
  }
  .slider-btn {
    width: 36px !important;
    height: 36px !important;
    font-size: 0.9rem !important;
  }
  .slider-prev { left: -12px !important; }
  .slider-next { right: -12px !important; }
  .video-card {
    border-radius: 24px !important;
  }
  .section-title {
    font-size: 1.8rem !important;
  }
}



{
  position: static !important;
  background: url('https://nilanktech.in/test/medicalrotation/wp-content/uploads/2026/05/medical-banner.png') !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: cover !important;
  padding: 24px !important;
  color: #fff !important;
  overflow: hidden !important;
}

.it-header-main-menu nav ul li > a {
  color: #fff !important;
}

.it-header-bg::after {
  background: #143268 !important;
}

.step-title {
  color: #fff !important;
}

.step-desc {
  color: #fff !important;
}

.story-body p {
  color: #EDF1F8 !important;
}

.services-cta p {
  color: #EDF1F8 !important;
}

.services-cta a {
  color: #fff !important;
}

.it-footer-text p {
  font-size: 15px !important;
  color: #EDF1F8 !important;
}


@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
	.it-header-area.header-black-bg{
		background-color: #fff !important;
	}
	
}

.card-cv {
  background-image: url('<?php echo home_url(); ?>/test/medicalrotation/wp-content/uploads/2026/04/CV-Personal-Statement.jpg.jpeg') !important;
}

.card-interview {
  background-image: url('<?php echo home_url(); ?>/test/medicalrotation/wp-content/uploads/2026/04/Mock-Interviews.jpg.jpeg') !important;
}

.card-research {
  background-image: url('<?php echo home_url(); ?>/test/medicalrotation/wp-content/uploads/2026/04/Research-Tele-rotation.jpg.jpeg') !important;
}

.card-accommodation {
  background-image: url('<?php echo home_url(); ?>/test/medicalrotation/wp-content/uploads/2026/04/Accommodation-Help.jpg.jpeg') !important;
}

.card-rank {
  background-image: url('<?php echo home_url(); ?>/test/medicalrotation/wp-content/uploads/2026/04/Rank-Order-List.jpg.jpeg') !important;
}

.card-visa {
  background-image: url('<?php echo home_url(); ?>/test/medicalrotation/wp-content/uploads/2026/04/Visa-Letter-Prep.jpg.jpeg') !important;
}

.card-consult {
  background-image: url('<?php echo home_url(); ?>/test/medicalrotation/wp-content/uploads/2026/04/Consultation.jpg.jpeg') !important;
}

.card-faq {
  background-image: url('<?php echo home_url(); ?>/test/medicalrotation/wp-content/uploads/2026/04/FAQs-Guidance.jpg.jpeg') !important;
}


/* strip css */
.stats-strip {
  background: linear-gradient(90deg, #0f3086 0%, #0a5cae 60%, #1696cf 100%);
  padding: 1rem 1rem;
  width: 100%;
  box-sizing: border-box;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1100px;
  margin: 0 auto;
  gap: 0;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  text-align: center;
}
.stat-item:last-child {
  border-right: none;
}
.stat-number {
	font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 0.35rem;
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: white !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Tablet: 2x2 grid */
@media (max-width: 700px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item:nth-child(2) {
    border-right: none;
  }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }
}

/* Mobile */
@media (max-width: 380px) {
  .stat-number {
    font-size: 1.7rem;
  }
}

/* gallery css */
/* ── MSR Gallery Section ── */
#msrg-gallery-section {
  background: #F0F6FF;
  padding: 0 60px 80px;
  border-top: 1px solid #D0E4F5;
}
 
#msrg-gallery-section .msrg-gallery-header {
  text-align: center;
  padding: 80px 0 16px;
}
 
#msrg-gallery-section .msrg-section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #0077B6;
  margin-bottom: 14px;
  background: #E8F2FD;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid #D0E4F5;
}
 
#msrg-gallery-section .msrg-section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 50px);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 18px;
  color: #023E8A;
}
 
#msrg-gallery-section .msrg-section-sub {
  color: #6B8CAE;
  font-size: 16px;
  line-height: 1.85;
  font-weight: 400;
  max-width: 580px;
  margin: 0 auto;
}
 
#msrg-gallery-section .msrg-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 270px 270px;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
 
#msrg-gallery-section .msrg-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 119, 182, 0.1);
}
 
#msrg-gallery-section .msrg-gallery-item:first-child {
  grid-row: span 2;
}
 
#msrg-gallery-section .msrg-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
  filter: brightness(0.82) saturate(0.9);
  display: block;
  max-width: 100%;
}
 
#msrg-gallery-section .msrg-gallery-item:hover img {
  transform: scale(1.07);
  filter: brightness(0.95) saturate(1.05);
}
 
#msrg-gallery-section .msrg-gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 62, 138, 0.82) 0%, transparent 55%);
}
 
#msrg-gallery-section .msrg-gallery-caption {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
}
 
#msrg-gallery-section .msrg-gallery-caption h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 3px;
  color: #FFFFFF;
}
 
#msrg-gallery-section .msrg-gallery-caption p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}
 
#msrg-gallery-section .msrg-gallery-tag {
  position: sticky;
  top: 14px;
  right: 14px;
  background: #0077B6;
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
}
 
/* Reveal animation */
#msrg-gallery-section.msrg-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
#msrg-gallery-section.msrg-reveal.msrg-visible {
  opacity: 1;
  transform: translateY(0);
}
 
/* ── Responsive ── */
@media (max-width: 900px) {
  #msrg-gallery-section {
    padding: 0 20px 55px;
  }
  #msrg-gallery-section .msrg-gallery-header {
    padding: 55px 0 36px;
  }
  #msrg-gallery-section .msrg-gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 190px 190px 190px;
    gap: 10px;
  }
  #msrg-gallery-section .msrg-gallery-item:first-child {
    grid-row: span 1;
    grid-column: span 2;
  }
  #msrg-gallery-section .msrg-gallery-caption p {
    display: flex;
  }
}
 
@media (max-width: 540px) {
  #msrg-gallery-section .msrg-gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 170px);
  }
  #msrg-gallery-section .msrg-gallery-item:first-child {
    grid-column: span 1;
  }
}

#msrg-gallery-section {
    flex-direction: column;
}

.msr-why-wrap {
    padding: 50px 0;
}

/* new-card-section */


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

.process-card { border-radius:14px; overflow:hidden; background:#fff !important; border:1.5px solid var(--border); box-shadow:0 4px 20px rgba(0,119,182,0.07); transition:all 0.4s; }
.process-card:hover { transform:translateY(-8px); box-shadow:0 16px 48px rgba(0,119,182,0.15); border-color:var(--blue-main); }
.process-img-wrap { position:relative; height:190px; overflow:hidden; }
.process-img-wrap img { width:100%; height:100%; object-fit:cover; transition:transform 0.6s; filter:brightness(0.8) saturate(0.9);     border-radius: 13px 13px 0px 0px; }
.process-card:hover .process-img-wrap img { transform:scale(1.07); filter:brightness(0.95) saturate(1.1); }
.process-img-overlay { position:absolute; inset:0; background:linear-gradient(to top,rgba(2,62,138,0.85) 0%,transparent 60%); }
.process-num { position:absolute; top:12px; right:14px; font-family:'Montserrat',sans-serif; font-weight:900; font-size:28px; color:rgba(255,255,255,0.5); }
.process-body { padding:22px; }
.process-body h4 { font-family:'Montserrat',sans-serif; font-weight:700; font-size:15px; margin-bottom:8px; color:#023e8a !important; }
.process-body p { font-size:13px; color:var(--text-muted); line-height:1.7; margin-bottom:14px; }
.process-btn { font-size:12px; color:#0077b6 !important; font-weight:700; text-decoration:none; }
.process-btn:hover { color:var(--gold); }


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

/* Mobile view */
@media (max-width: 576px) {
  .process-grid {
    grid-template-columns: 1fr; /* 1 card per row */
  }
}

@media (max-width: 576px) {
  .process-body {
    padding: 16px;
  }

  .process-body h4 {
    font-size: 14px;
  }

  .process-body p {
    font-size: 12px;
  }
}
.it-hero-title{
	font-family: 'Montserrat', sans-serif !important;
	font-weight:900px !important;
}
/* 
------------------------------- */

/* ════════════════════════════
   DR. IZHAR (Responsive Fixed)
   ════════════════════════════ */

.doctor-section {
  background: #fff !important;
  border-top: 1px solid var(--border);
  padding: 80px 20px;
}

/* GRID */
.doctor-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: flex-start; /* FIXED */
  max-width: 1100px;
  margin: 0 auto;
}

/* IMAGE */
.doctor-image-wrap {
  position: relative;
}

.doctor-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  border-radius: 16px;
  border: 2px solid var(--border);
  box-shadow: 0 16px 60px rgba(0,119,182,0.15);
  display: block;
}

.doctor-img-overlay {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(to top, rgba(2,62,138,0.25) 0%, transparent 60%);
}

/* BADGE */
.doctor-badge-wrap {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--blue-main), var(--blue-deep));
  color: var(--white);
  border-radius: 12px;
  padding: 16px 20px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  box-shadow: 0 12px 40px rgba(0,119,182,0.35);
}

.doctor-badge-wrap .num {
  font-weight: 900;
  font-size: 26px;
  line-height: 1;
}

.doctor-badge-wrap .lbl {
  font-size: 10px;
  font-weight: 700;
  opacity: 0.9;
}

/* CONTENT */
.doctor-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(26px, 3vw, 44px);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 4px;
  color: var(--blue-deep);
}

.doctor-title {
  color: var(--blue-main);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.doctor-role {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 24px;
}

.doctor-content p {
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 24px;
}

/* FEATURES */
.doctor-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 36px;
}

.doctor-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-mid);
}

.doctor-feature .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ════════════════════════════
   TABLET (≤ 992px)
   ════════════════════════════ */
@media (max-width: 992px) {
  .doctor-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .doctor-section {
    padding: 60px 20px;
  }

  .doctor-content h2 {
    font-size: 28px;
  }
}

/* ════════════════════════════
   MOBILE (≤ 576px)
   ════════════════════════════ */
@media (max-width: 576px) {

  .doctor-section {
    padding: 40px 15px;
  }

  .doctor-grid {
    gap: 30px;
  }

  .doctor-img {
    aspect-ratio: 3/4; /* better for mobile */
  }

  .doctor-badge-wrap {
    right: 10px;
    bottom: -10px;
    padding: 12px 14px;
  }

  .doctor-badge-wrap .num {
    font-size: 20px;
  }

  .doctor-content h2 {
    font-size: 22px;
  }

  .doctor-content p {
    font-size: 14px;
    line-height: 1.7;
  }

  .doctor-title,
  .doctor-role {
    font-size: 12px;
  }

  /* FEATURES → stack */
  .doctor-features {
    grid-template-columns: 1fr;
  }

  .doctor-feature {
    font-size: 12px;
  }
}

.msr-services{
	margin-top: 0px !important;
}

/* CONTAINER */
.container {
  max-width: 1200px; /* tighter like screenshot */
  margin: 0 auto;
}

/* HERO PANEL (lighter blue like image) */
.hero-panel {
  background: linear-gradient(90deg, #1f73c9, #2db5c4);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 18px;
  color: #fff;
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
	justify-items: center;
}

.hero-panel h1 {
 	  font-size: 2.2rem !important;
    margin-bottom: 10px !important;
    font-weight: 700 !important;
    color: #fff !important;
}

.hero-panel p {
  font-size: 16px;
  opacity: 0.9;
	color: #fff ;
}

/* DASHBOARD BUTTONS */
.dashboard-switch-row {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.dash-switch-btn {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  color: #fff;
}

.dash-switch-btn.active-dashboard {
  background: #fff;
  color: #1f73c9;
}

/* LOCATION TABS */
.location-tabs-section {
  background: transparent;
  border-radius: 40px;
  padding: 6px 10px;
  margin-bottom: 16px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
	justify-items: center;
	align-items: center;
	justify-content: center
}

.location-pill {
  background: #f1f4f8;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: #35556b;
}

.location-pill.active {
  background: #2d8fd5;
  color: #fff;
}

/* FILTER BAR */
.filters-bar {
  background: transparent;
  border-radius: 40px;
  padding: 6px 10px;
  margin-bottom: 16px;
  display: flex;
  gap: 10px;
	justify-content: center
}

.filter-chip {
  background: #f3f6fa;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.filter-chip.active {
  background: #7b5cff;
  color: #fff;
}

/* ACTIVE CATEGORY HEADER */
.active-category-header {
	
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 18px;
  border-left: 4px solid #2d8fd5;
	justify-content: center;
	justify-items:center;
}

#headerDesc{
	font-size:18px;
}
.location-pill {
	font-size:18px;
}
.filter-chip {
	font-size:18px;
}
.results-meta{
	background: #fff;
	border-radius:15px;
	padding:10px;
	margin:10px;
}
.results-count-pill{
	color:#1f73c9;
}

.active-category-header h2 {
	font-size:22px;
	color: #0e63ff;
  
}

/* GRID */
.rotations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); /* tighter cards */
  gap: 14px;
}

/* CARD */
.rotation-card {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e6edf3;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
  transition: 0.2s;
}

.rotation-card:hover {
  transform: translateY(-3px);
}

/* HEADER */
.card-header {
  padding: 10px 12px;
  border-bottom: 1px solid #eef2f6;
  display: flex;
  justify-content: space-between;
}

.specialty-tag {
  background: #fff;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
	color:#111;
}

.specialty-tag loc-mini{
  background: #fff;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
	color:#111;
}

.category-badge-pill {
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 10px;
	color: #fff;
    background: #0e63ff;
}

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

.focus-area {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
}

.hospital-line {
  font-size: 15px;
  color: #5f7f96;
}

/* FOOTER */
.card-footer {
  padding: 8px 12px;
  border-top: 1px solid #eef2f6;
  font-size: 10px;
  display: flex;
  justify-content: space-between;
}

/* MOBILE */
@media (max-width: 768px) {

  .hero-panel {
    border-radius: 10px;
    padding: 14px;
  }

  .hero-panel h1 {
    font-size: 15px;
  }

  .dashboard-switch-row {
    flex-wrap: wrap;
  }

  .rotations-grid {
    grid-template-columns: 1fr; /* 1 card mobile like image */
  }

  .filters-bar,
  .location-tabs-section {
    overflow-x: auto;
    flex-wrap: nowrap;
		display:flex;
		flex-direction:column;
  }
}

.headingrotationmainheadingrotationmain{
	  font-size: 2.2rem !important;
    margin-bottom: 10px !important;
    font-weight: 700 !important;
    color: #fff !important;
}

.stats-dashboard-panel{
	display:none;
}



/* COMBO CARDS STYLES - Only for the three added combination cards */
.combo-cards-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 1.8rem;
    margin: 1rem 0 2rem;
	    padding: 20px;
    background: #fff;
    border-radius: 15px;
}

.rotation-link {
    text-decoration: none;
    flex: 1;
    min-width: 260px;
    display: block;
}

.rotation-cards {
    background: linear-gradient(145deg, #ffffff, #fafdff);
    border-radius: 1.5rem;
    padding: 1.4rem;
    transition: 0.2s;
    height: 100%;
    border: 1px solid #e6edf2;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 6px 12px -8px rgba(0,0,0,0.05);
}

.rotation-cards:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 24px -12px rgba(0,0,0,0.12);
    border-color: #cbdde4;
}

.rotation-cards .icon {
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
}

.card-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: #175e6410;
    backdrop-filter: blur(2px);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    color: #175e64;
}

.cardb-h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0.5rem 0 0.3rem;
    color: #154e55;
}

.cardb-p {
    font-size: 0.85rem;
    color: #496f7c;
    line-height: 1.4;
}

hr.combo-divider {
    margin: 1rem 0 0.5rem;
    border-color: #e2edf2;
}
.woocommerce-breadcrumb{
	    margin-top: 30px;
    margin-bottom: 0px;
    display: flex;
    text-align: center;
    justify-content: left;
    padding-left: 55px;
}
.entry product type-product post-12197 status-publish first instock product_cat-uncategorized has-post-thumbnail sold-individually shipping-taxable purchasable product-type-simple{
	display:flex;
	align-content:center;
	align-items:center;
	justify-content:center;
	justify-items:center;
}


.p{
	color:#111 !important;
}

.doctor-badge-wrap { position:absolute; bottom:-20px; right:-20px; background:linear-gradient(135deg,var(--blue-main),var(--blue-deep)); color:var(--white); border-radius:12px; padding:16px 20px; text-align:center; font-family:'Montserrat',sans-serif; box-shadow:0 12px 40px rgba(0,119,182,0.35); }
.doctor-badge-wrap .num { font-weight:900; font-size:26px; line-height:1; }
.doctor-badge-wrap .lbl { font-size:10px; font-weight:700; opacity:0.9; };

.msr-premium-footer {
  background: linear-gradient(160deg, #f0f6ff 0%, #eef2ff 40%, #f5f0ff 100%);
  position: relative;
  overflow: hidden;
}

/* Decorative blobs */
.mpf-blob-1 {
  position: absolute;
  top: -80px; left: -80px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(59,130,246,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.mpf-blob-2 {
  position: absolute;
  bottom: -60px; right: -60px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(124,58,237,0.10) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.mpf-blob-3 {
  position: absolute;
  top: 50%; left: 55%;
  transform: translate(-50%, -50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(99,179,237,0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* Top accent line */
.mpf-top-border {
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #7c3aed, #06b6d4, #3b82f6);
  background-size: 300% 100%;
  animation: borderShift 6s linear infinite;
}
@keyframes borderShift {
  0%   { background-position: 0% 0%; }
  100% { background-position: 300% 0%; }
}

.mpf-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px 0;
}

.mpf-main {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(99,102,241,0.15);
}

/* BRAND */
.mpf-logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.mpf-logo-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(37,99,235,0.35);
}
.mpf-logo-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: #1e3a5f;
  line-height: 1.25;
}
.mpf-brand-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  color: #111;
  line-height: 1.75;
  margin-bottom: 20px;
}

/* Stats */
.mpf-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 22px;
}
.mpf-stat-pill {
  background: #fff;
  border: 1px solid rgba(99,102,241,0.18);
  border-radius: 10px;
  padding: 10px 14px;
  box-shadow: 0 2px 8px rgba(99,102,241,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}
.mpf-stat-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(99,102,241,0.14);
}
.mpf-stat-pill strong {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.mpf-stat-pill span {
  font-family: 'DM Sans', sans-serif;
  font-size: 10.5px;
  color: #111;
  letter-spacing: 0.4px;
}

/* Socials */
.mpf-socials { display: flex; gap: 8px; }
.mpf-soc {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: #fff;
  border: 1px solid rgba(99,102,241,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.22s;
  box-shadow: 0 2px 6px rgba(99,102,241,0.08);
}
.mpf-soc:hover {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(37,99,235,0.3);
  transform: translateY(-2px);
}
.mpf-soc svg { width: 15px; height: 15px; fill: #111; transition: fill 0.2s; }
.mpf-soc:hover svg { fill: #fff; }

/* Nav Columns */
.mpf-col h5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 18px;
}
.mpf-col ul { list-style: none; padding: 0; margin: 0; }
.mpf-col ul li { margin-bottom: 10px; }
.mpf-col ul li a {
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  color: #111;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s, gap 0.2s;
}
.mpf-col ul li a:hover { color: #2563eb; gap: 12px; }
.mpf-col ul li a::before {
  content: '';
  display: block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(37,99,235,0.3);
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}
.mpf-col ul li a:hover::before {
  background: #2563eb;
  transform: scale(1.4);
}

/* Contact */
.mpf-contact-items { display: flex; flex-direction: column; gap: 12px; }
.mpf-citem { display: flex; align-items: flex-start; gap: 10px; }
.mpf-citem svg { width: 15px; height: 15px; fill: #3b82f6; flex-shrink: 0; margin-top: 2px; }
.mpf-citem span {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #111;
  line-height: 1.65;
}
.mpf-citem a { color: #2563eb; text-decoration: none; }
.mpf-citem a:hover { color: #7c3aed; text-decoration: underline; }

/* Bottom */
.mpf-bottom {
  padding: 20px 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.mpf-copy {
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  color: #111;
}
.mpf-copy a { color: #3b82f6; text-decoration: none; }
.mpf-copy a:hover { color: #2563eb; text-decoration: underline; }
.mpf-policy-links { display: flex; gap: 20px; }
.mpf-policy-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  color: #111;
  text-decoration: none;
  transition: color 0.2s;
}
.mpf-policy-links a:hover { color: #2563eb; }

/* Responsive */
@media(max-width:900px) {
  .mpf-main { grid-template-columns: 1fr 1fr; }
  .mpf-inner { padding: 48px 24px 0; }
}
@media(max-width:600px) {
  .mpf-main { grid-template-columns: 1fr; }
  .mpf-stats-row { grid-template-columns: 1fr 1fr; }
}

  /* ── TOP BAR ── */
    #msr-topbar {
      background: #0d3a56;
      padding: 7px 0;
      font-family: 'Inter', sans-serif;
      font-size: 12.5px;
    }
    #msr-topbar .tb-inner {
      max-width: 1300px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 28px;
      flex-wrap: wrap;
    }
    #msr-topbar a {
      color: rgba(255,255,255,0.82);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: color .2s;
    }
    #msr-topbar a:hover { color: #fff; }
    #msr-topbar .tb-sep {
      color: rgba(255,255,255,0.2);
      user-select: none;
    }
    @media (max-width: 600px) {
      .tb-hide { display: none !important; }
    }

    /* ── MAIN NAV ── */
    #msr-nav {
      background: #fff;
      border-bottom: 1px solid #e2e8f0;
      box-shadow: 0 2px 10px rgba(0,0,0,0.07);
      position: sticky;
      top: 0;
      z-index: 999;
      font-family: 'Inter', sans-serif;
    }
    .msr-nav-inner {
      max-width: 1300px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      align-items: center;
      height: 78px;
    }

    /* ── LOGO ── */
    .msr-logo {
      display: flex;
      align-items: center;
      text-decoration: none;
      flex-shrink: 0;
      margin-right: auto;
    }
    .msr-logo img {
      height: 72px;
      width: auto;
      display: block;
    }

    /* ── NAV LINKS ── */
    .msr-nav-links {
      display: flex;
      align-items: center;
      gap: 2px;
      list-style: none;
      margin: 0 20px 0 0;
      padding: 0;
    }
    .msr-nav-links li a {
      color: #111;
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      padding: 7px 15px;
      border-radius: 6px;
      display: block;
      white-space: nowrap;
      transition: background .15s, color .15s;
    }
    .msr-nav-links li a:hover,
    .msr-nav-links li.current-menu-item > a,
    .msr-nav-links li.current_page_item > a {
      background: #ebf4fd;
      color: #1a4f72;
    }

    /* ── CTA BUTTON ── */
    .msr-nav-cta {
      background: #2b6cb0;
      color: #fff !important;
      text-decoration: none;
      font-size: 14px;
      font-weight: 700;
      padding: 10px 22px;
      border-radius: 8px;
      white-space: nowrap;
      flex-shrink: 0;
      transition: background .15s, transform .1s;
      display: inline-block;
    }
    .msr-nav-cta:hover {
      background: #1a4f8a;
      transform: translateY(-1px);
      color: #fff !important;
    }

    /* ── HAMBURGER ── */
    .msr-hamburger {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      color: #1a365d;
      font-size: 22px;
      padding: 6px;
      margin-left: 12px;
    }

    /* ── MOBILE ── */
    @media (max-width: 991px) {
      .msr-nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 78px;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid #e2e8f0;
        padding: 12px 24px 16px;
        gap: 4px;
        box-shadow: 0 6px 16px rgba(0,0,0,0.08);
      }
      .msr-nav-links.open {
        display: flex;
      }
      .msr-nav-links li a {
        font-size: 15px;
        padding: 9px 14px;
      }
      .msr-hamburger {
        display: block;
      }
      .msr-nav-cta {
        display: none;
      }
      /* Show CTA inside mobile menu */
      .msr-nav-links .msr-mobile-cta {
        display: block !important;
        margin-top: 6px;
      }
      .msr-nav-links .msr-mobile-cta a {
        background: #2b6cb0;
        color: #fff !important;
        text-align: center;
        border-radius: 8px;
        font-weight: 700;
      }
      .msr-nav-links .msr-mobile-cta a:hover {
        background: #1a4f8a;
      }
    }

/* ── Scoped to #cr-wrap so it won't clash with your theme ── */
    background: transparent;
#cr-wrap {
    --cr-blue:   #2c80b9;
    --cr-red:    #e63946;
    --cr-gold:   #ffb703;
    --cr-purple: #7209b7;
    --cr-green:  #2a9d8f;
    --cr-im:     #4299e1;
    --cr-spec:   #9f7aea;
    --cr-hosp:   #38a169;
    --cr-bg:     #f8fafc;
    --cr-card:   #ffffff;
    --cr-dark:   #2d3748;
    --cr-light:  #718096;
    --cr-border: #e2e8f0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--cr-dark);
    background: var(--cr-bg);
    padding: 20px;
    box-sizing: border-box;
}
#cr-wrap *, #cr-wrap *::before, #cr-wrap *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* Header */
#cr-wrap .cr-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
}
#cr-wrap .cr-header h2 { font-size: 2rem; margin-bottom: 10px; font-weight: 700; color: white; }
#cr-wrap .cr-header p  { font-size: 1rem; opacity: .9; max-width: 700px; margin: 0 auto; }

/* Hospital Type Toggle */
#cr-wrap .cr-type-toggle { display:flex; justify-content:center; margin-bottom:25px; }
#cr-wrap .cr-toggle-wrap {
    display:inline-flex; background:white; border-radius:50px;
    padding:6px; box-shadow:0 4px 20px rgba(0,0,0,.10); gap:4px;
}
#cr-wrap .cr-tbtn {
    padding:11px 22px; border:none; border-radius:50px; cursor:pointer;
    font-weight:700; font-size:.9rem; transition:all .3s; display:flex;
    align-items:center; gap:8px; color:var(--cr-light); background:transparent;
}
#cr-wrap .cr-tbtn:hover { background:var(--cr-bg); color:var(--cr-dark); }
#cr-wrap .cr-tbtn.active {
    background:linear-gradient(135deg,#2c80b9,#1a5c8a);
    color:white; box-shadow:0 4px 15px rgba(44,128,185,.35);
}
#cr-wrap .cr-tbtn.active.two  { background:linear-gradient(135deg,#38a169,#276749); box-shadow:0 4px 15px rgba(56,161,105,.35); }
#cr-wrap .cr-tbtn.active.mixed{ background:linear-gradient(135deg,#9f7aea,#6b46c1); box-shadow:0 4px 15px rgba(159,122,234,.35); }
#cr-wrap .cr-tbadge {
    background:rgba(255,255,255,.22); padding:2px 8px;
    border-radius:20px; font-size:.75rem;
}
#cr-wrap .cr-tbtn:not(.active) .cr-tbadge { background:var(--cr-border); color:var(--cr-light); }

/* Location Tabs */
#cr-wrap .cr-loc-tabs {
    display:flex; justify-content:center; gap:10px;
    margin-bottom:28px; flex-wrap:wrap;
}
#cr-wrap .cr-loc-tab {
    padding:11px 22px; background:white; border:2px solid var(--cr-border);
    border-radius:50px; cursor:pointer; font-weight:600; font-size:.9rem;
    transition:all .3s; display:flex; align-items:center; gap:8px; 
}
#cr-wrap .cr-loc-tab:hover { transform:translateY(-2px); box-shadow:0 5px 15px rgba(0,0,0,.08); }
#cr-wrap .cr-loc-tab.disabled { opacity:.5; display:none; cursor:not-allowed; }
#cr-wrap .cr-loc-tab.active[data-loc="chicago"] { background:var(--cr-blue);  border-color:var(--cr-blue);  color:white; }
#cr-wrap .cr-loc-tab.active[data-loc="houston"] { background:var(--cr-red);   border-color:var(--cr-red);   color:white; }
#cr-wrap .cr-loc-tab.active[data-loc="indiana"] { background:var(--cr-gold);  border-color:var(--cr-gold);  color:#333; }
#cr-wrap .cr-loc-tab.active[data-loc="newyork"] { background:var(--cr-purple);border-color:var(--cr-purple);color:white; }
#cr-wrap .cr-loc-tab.active[data-loc="stlouis"] { background:var(--cr-green); border-color:var(--cr-green); color:white; }
#cr-wrap .cr-tab-badge {
    background:rgba(0,0,0,.08); padding:2px 9px;
    border-radius:20px; font-size:.78rem;
}
#cr-wrap .cr-loc-tab.active .cr-tab-badge { background:rgba(255,255,255,.25); }

/* Category Filters */
#cr-wrap .cr-cat-filters {
    display:flex; justify-content:center; gap:16px;
    margin-bottom:28px; flex-wrap:wrap;
}
#cr-wrap .cr-cat-btn {
    padding:14px 28px; border:3px solid transparent; border-radius:14px;
    cursor:pointer; font-weight:700; font-size:1rem; transition:all .3s;
    display:flex; align-items:center; gap:10px; min-width:180px;
    justify-content:center; box-shadow:0 4px 15px rgba(0,0,0,.08);
}
#cr-wrap .cr-cat-btn:hover { transform:translateY(-4px); box-shadow:0 8px 25px rgba(0,0,0,.13); }
#cr-wrap .cr-cat-btn.active { color:white; transform:translateY(-4px); }
#cr-wrap .cr-cat-btn.all     { background:rgba(44,128,185,.08); color:var(--cr-blue);  border-color:var(--cr-blue); }
#cr-wrap .cr-cat-btn.im      { background:rgba(66,153,225,.08); color:var(--cr-im);    border-color:var(--cr-im); }
#cr-wrap .cr-cat-btn.spec    { background:rgba(159,122,234,.08);color:var(--cr-spec);  border-color:var(--cr-spec); }
#cr-wrap .cr-cat-btn.hosp    { background:rgba(56,161,105,.08); color:var(--cr-hosp);  border-color:var(--cr-hosp); }
#cr-wrap .cr-cat-btn.all.active  { background:var(--cr-blue); color:white !important; }
#cr-wrap .cr-cat-btn.im.active   { background:var(--cr-im);   color:white !important; }
#cr-wrap .cr-cat-btn.spec.active { background:var(--cr-spec); color:white !important; }
#cr-wrap .cr-cat-btn.hosp.active { background:var(--cr-hosp); color:white !important; }
#cr-wrap .cr-cat-btn.all.active  i,
#cr-wrap .cr-cat-btn.im.active   i,
#cr-wrap .cr-cat-btn.spec.active i,
#cr-wrap .cr-cat-btn.hosp.active i { color:white !important; }
#cr-wrap .cr-cnt {
    background:white; padding:3px 11px; border-radius:20px;
    font-weight:700; font-size:.85rem;
}
#cr-wrap .cr-cat-btn.all.active  .cr-cnt,
#cr-wrap .cr-cat-btn.im.active   .cr-cnt,
#cr-wrap .cr-cat-btn.spec.active .cr-cnt,
#cr-wrap .cr-cat-btn.hosp.active .cr-cnt { background:rgba(255,255,255,.22); color:white; }
#cr-wrap .cr-cat-btn.all  .cr-cnt { color:var(--cr-blue); }
#cr-wrap .cr-cat-btn.im   .cr-cnt { color:var(--cr-im); }
#cr-wrap .cr-cat-btn.spec .cr-cnt { color:var(--cr-spec); }
#cr-wrap .cr-cat-btn.hosp .cr-cnt { color:var(--cr-hosp); }

/* Active display */
#cr-wrap .cr-active-display {
    text-align:center; margin-bottom:24px; padding:18px 20px;
    background:white; border-radius:10px; box-shadow:0 4px 15px rgba(0,0,0,.05);
}
#cr-wrap .cr-active-display h3 { color:var(--cr-blue); font-size:1.3rem; margin-bottom:6px; }
#cr-wrap .cr-active-display p  { color:#111; font-size:.95rem; }

/* Results header */
#cr-wrap .cr-results-hdr {
    display:flex; justify-content:space-between; align-items:center;
    margin-bottom:18px; padding:16px 20px; background:white;
    border-radius:10px; box-shadow:0 4px 15px rgba(0,0,0,.05);
}
#cr-wrap .cr-results-hdr h4 { color:var(--cr-dark); font-size:1.1rem; display:flex; align-items:center; gap:8px; }
#cr-wrap .cr-results-count {
    color:var(--cr-blue); font-weight:700; font-size:1rem;
    background:#f0f7ff; padding:7px 15px; border-radius:20px;
}

/* Grid */
#cr-wrap .cr-grid {
    display:grid;
    grid-template-columns:repeat(auto-fill, minmax(320px,1fr));
    gap:22px; margin-bottom:36px;
}

/* Cards */
#cr-wrap .cr-card {
    background:white; border-radius:12px; overflow:hidden;
    box-shadow:0 4px 15px rgba(0,0,0,.07); transition:all .3s;
    cursor:pointer; border-top:4px solid var(--cr-blue);
    animation:crFade .4s ease;
}
@keyframes crFade { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:translateY(0)} }
#cr-wrap .cr-card:hover { transform:translateY(-5px); box-shadow:0 8px 30px rgba(0,0,0,.12); }
#cr-wrap .cr-card.im       { border-top-color:var(--cr-im); }
#cr-wrap .cr-card.specialty{ border-top-color:var(--cr-spec); }
#cr-wrap .cr-card.hospital-card { border-top-color:var(--cr-hosp); }
#cr-wrap .cr-card.combo-card    { border-top-color:var(--cr-hosp); }
#cr-wrap .cr-card[data-loc="houston"] { border-top-color:var(--cr-red); }
#cr-wrap .cr-card[data-loc="indiana"] { border-top-color:var(--cr-gold); }
#cr-wrap .cr-card[data-loc="newyork"] { border-top-color:var(--cr-purple); }
#cr-wrap .cr-card[data-loc="stlouis"] { border-top-color:var(--cr-green); display:none; }

#cr-wrap .cr-card-hdr {
    padding:18px 20px; border-bottom:1px solid var(--cr-border);
    display:flex; align-items:center; justify-content:space-between;
}
#cr-wrap .cr-specialty { font-weight:700; font-size:1.1rem; }
#cr-wrap .cr-badge {
    padding:5px 13px; border-radius:14px; font-size:.82rem;
    font-weight:600; color:white;
}
#cr-wrap .cr-badge.im   { background:var(--cr-im); }
#cr-wrap .cr-badge.spec { background:var(--cr-spec); }
#cr-wrap .cr-badge.hosp { background:var(--cr-hosp); }
#cr-wrap .cr-badge.combo{ background:linear-gradient(135deg,#38a169,#276749); }
#cr-wrap .cr-loc-badge {
    padding:3px 9px; border-radius:11px; font-size:.72rem;
    font-weight:600; color:white; margin-left:8px;
}
#cr-wrap .loc-chicago { background:var(--cr-blue); }
#cr-wrap .loc-houston { background:var(--cr-red); }
#cr-wrap .loc-indiana { background:var(--cr-gold); color:#333; }
#cr-wrap .loc-newyork { background:var(--cr-purple); }
#cr-wrap .loc-stlouis { background:var(--cr-green); }

#cr-wrap .cr-card-body { padding:18px 20px; }
#cr-wrap .cr-focus  { font-size:1rem; color:var(--cr-blue); font-weight:600; margin-bottom:13px; }
#cr-wrap .cr-hosp-row { color:var(--cr-light); margin-bottom:9px; display:flex; align-items:flex-start; gap:8px; font-size:.92rem; }
#cr-wrap .cr-hosp-row i { color:var(--cr-blue); margin-top:3px; flex-shrink:0; }
#cr-wrap .cr-code {
    background:#f1f5f9; color:var(--cr-light); padding:4px 11px;
    border-radius:14px; font-size:.82rem; font-weight:600;
    display:inline-block; margin-top:8px;
}
#cr-wrap .cr-card-foot {
    padding:13px 20px; background:#f8fafc; border-top:1px solid var(--cr-border);
    display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:8px;
}
#cr-wrap .cr-type {
    padding:4px 11px; border-radius:11px; font-size:.82rem; font-weight:600;
}
#cr-wrap .cr-type.inpatient { background:#e8f4fc; color:var(--cr-blue); }
#cr-wrap .cr-type.clinic    { background:#fff8e1; color:#ff8f00; }
#cr-wrap .cr-dur { color:#111; font-size:.88rem; }

/* Hospital card extras */
#cr-wrap .cr-hosp-hdr { display:flex; align-items:center; gap:13px; margin-bottom:13px; }
#cr-wrap .cr-hosp-icon {
    width:46px; height:46px; background:var(--cr-hosp); border-radius:50%;
    display:flex; align-items:center; justify-content:center; color:white; font-size:1.3rem; flex-shrink:0;
}
#cr-wrap .cr-hosp-name { font-size:1.15rem; font-weight:700; }
#cr-wrap .cr-hosp-cnt  { color:var(--cr-hosp); font-weight:600; }
#cr-wrap .cr-rot-item {
    padding:9px 11px; background:#f8fafc; border-radius:8px; margin-bottom:7px;
    display:flex; justify-content:space-between; align-items:center;
}
#cr-wrap .cr-rot-item span:first-child { font-weight:600; font-size:.9rem; }
#cr-wrap .cr-rot-item span:last-child  {
    background:white; padding:2px 9px; border-radius:11px;
    font-size:.82rem; font-weight:600; color:var(--cr-hosp);
}

/* Combo card */
#cr-wrap .cr-combo-hospitals { display:flex; flex-direction:column; gap:5px; margin:10px 0; }
#cr-wrap .cr-combo-hosp-row  { display:flex; align-items:center; gap:7px; font-size:.88rem; }
#cr-wrap .cr-combo-hosp-row i{ color:var(--cr-hosp); font-size:.8rem; }
#cr-wrap .cr-combo-btn {
    display:inline-flex; align-items:center; gap:6px;
    background:linear-gradient(135deg,#38a169,#276749); color:white;
    padding:7px 16px; border-radius:8px; font-size:.83rem; font-weight:600;
    text-decoration:none; transition:all .3s;
}
#cr-wrap .cr-combo-btn:hover { transform:translateY(-2px); box-shadow:0 4px 12px rgba(56,161,105,.4); color:white; }

/* Two-hospital header */
#cr-wrap .cr-combo-header {
    grid-column:1/-1; text-align:center; padding:18px 22px;
    background:linear-gradient(135deg,#f0fff4,#e6ffec);
    border-radius:12px; border:2px solid #c6f6d5; margin-bottom:8px;
}
#cr-wrap .cr-combo-header h3 { color:#276749; font-size:1.25rem; margin-bottom:5px; }
#cr-wrap .cr-combo-header p  { color:#38a169; font-size:.92rem; }
#cr-wrap .cr-mixed-header {
    grid-column:1/-1; text-align:center; padding:18px 22px;
    background:linear-gradient(135deg,#faf5ff,#f3e8ff);
    border-radius:12px; border:2px solid #d6bcfa; margin-bottom:8px;
}
#cr-wrap .cr-mixed-header h3 { color:#6b46c1; font-size:1.25rem; margin-bottom:5px; }
#cr-wrap .cr-mixed-header p  { color:#9f7aea; font-size:.92rem; }

/* No results */
#cr-wrap .cr-no-results { grid-column:1/-1; text-align:center; padding:55px 20px; color:var(--cr-light); }
#cr-wrap .cr-no-results i { font-size:2.8rem; margin-bottom:16px; display:block; opacity:.3; }

/* Stats */
#cr-wrap .cr-stats {
    background:white; border-radius:12px; padding:28px;
    margin-top:36px; box-shadow:0 5px 20px rgba(0,0,0,.05);
}
#cr-wrap .cr-stats h4 { margin-bottom:22px; color:var(--cr-dark); font-size:1.3rem; display:flex; align-items:center; gap:8px; }
#cr-wrap .cr-stats-grid {
    display:grid; grid-template-columns:repeat(auto-fit,minmax(180px,1fr)); gap:18px;
}
#cr-wrap .cr-stat { padding:18px; border-radius:10px; text-align:center; }
#cr-wrap .cr-stat p { font-size:.85rem; color:#111; margin-bottom:8px; }
#cr-wrap .cr-stat-val { font-size:2.3rem; font-weight:700; line-height:1; }

/* Responsive */
@media(max-width:768px){
    #cr-wrap .cr-grid { grid-template-columns:1fr; }
    #cr-wrap .cr-cat-filters { flex-direction:column; align-items:center; }
    #cr-wrap .cr-cat-btn { width:100%; max-width:380px; }
    #cr-wrap .cr-loc-tabs { flex-direction:column; align-items:center; }
    #cr-wrap .cr-loc-tab { width:100%; max-width:300px; justify-content:center; }
    #cr-wrap .cr-toggle-wrap { flex-direction:column; border-radius:16px; }
    #cr-wrap .cr-tbtn { border-radius:12px; justify-content:center; }
    #cr-wrap .cr-stats-grid { grid-template-columns:repeat(2,1fr); }
}
@media(max-width:480px){
    #cr-wrap .cr-stats-grid { grid-template-columns:1fr; }
    #cr-wrap .cr-results-hdr { flex-direction:column; align-items:flex-start; gap:8px; }
}

.msr-testi-section{
  background:transparent;
  padding:0px 0;
	padding-bottom:80px;
	padding-top:0px;
  position:relative;
  overflow:hidden;
}
.msr-testi-section::before{
  content:'';position:absolute;top:-120px;right:-120px;
  width:420px;height:420px;border-radius:50%;
  background:radial-gradient(circle,rgba(37,99,235,0.07) 0%,transparent 70%);
  pointer-events:none;
}
.testi-container{max-width:1200px;margin:0 auto;padding:0 32px;}
.testi-top{text-align:center;margin-bottom:52px;}
.testi-top .eyebrow{
  display:inline-block;font-size:11px;font-weight:600;letter-spacing:2px;
  text-transform:uppercase;color:#2563eb;margin-bottom:10px;
}
.testi-top h2{font-size:36px;font-weight:700;color:#0f172a;margin-bottom:8px;line-height:1.15;}
.testi-top .rating-row{display:flex;align-items:center;justify-content:center;gap:8px;margin-top:10px;}
.testi-top .gold-stars{color:#f59e0b;font-size:20px;letter-spacing:2px;}
.testi-top .rating-text{font-size:14px;color:#111;}

.testi-main-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  align-items:start;
}

/* VIDEO PANEL */
.testi-video-panel{
  background:#0f172a;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 24px 60px rgba(15,23,42,0.18);
  position:relative;
}
.testi-video-tabs{
  display:flex;
  gap:0;
  border-bottom:1px solid rgba(255,255,255,0.08);
}
.testi-vtab{
  flex:1;padding:12px 8px;
  font-size:12px;font-weight:500;color:rgba(255,255,255,0.45);
  cursor:pointer;text-align:center;
  border-bottom:2px solid transparent;
  transition:all 0.2s;
  background:transparent;border-top:none;border-left:none;border-right:none;
}
.testi-vtab.active{color:#fff;border-bottom-color:#2563eb;}
.testi-vtab:hover:not(.active){color:rgba(255,255,255,0.7);}
.testi-video-frame{
  position:relative;background:#000;aspect-ratio:16/9;
}
.testi-video-frame video{width:100%;height:100%;object-fit:cover;display:block;}
.testi-vid-overlay{
  position:absolute;inset:0;
  display:flex;align-items:center;justify-content:center;
  background:rgba(0,0,0,0.38);
  cursor:pointer;transition:background 0.2s;
}
.testi-vid-overlay:hover{background:rgba(0,0,0,0.52);}
.testi-vid-overlay.hidden{display:none;}
.play-circle{
  width:64px;height:64px;border-radius:50%;
  background:rgba(255,255,255,0.95);
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 8px 32px rgba(0,0,0,0.3);
  transition:transform 0.2s;
}
.testi-vid-overlay:hover .play-circle{transform:scale(1.08);}
.play-circle svg{width:22px;height:22px;fill:#1d4ed8;margin-left:4px;}
.testi-video-info{
  padding:20px 24px;
  display:flex;align-items:center;gap:14px;
}
.v-avatar{
  width:44px;height:44px;border-radius:50%;
  background:linear-gradient(135deg,#1d4ed8,#7c3aed);
  display:flex;align-items:center;justify-content:center;
  font-size:14px;font-weight:700;color:#fff;flex-shrink:0;
}
.v-name{font-size:14px;font-weight:600;color:#fff;}
.v-role{font-size:12px;color:#fff;margin-top:1px;}
.v-quote{font-size:12px;color:#fff;font-style:italic;margin-top:6px;line-height:1.5;}
.v-stars{color:#f59e0b;font-size:12px;margin-top:4px;}

/* TEXT TESTIMONIALS */
.testi-text-panel{
  display:flex;flex-direction:column;gap:20px;
}
.txt-testi-card{
  background:#fff;
  border-radius:16px;
  padding:22px 24px;
  border:1px solid rgba(37,99,235,0.1);
  box-shadow:0 4px 24px rgba(37,99,235,0.06);
  transition:transform 0.2s,box-shadow 0.2s;
  position:relative;overflow:hidden;
}
.txt-testi-card::before{
  content:'';position:absolute;top:0;left:0;
  width:3px;height:100%;
  background:linear-gradient(180deg,#2563eb,#7c3aed);
  border-radius:3px 0 0 3px;
}
.txt-testi-card:hover{transform:translateY(-2px);box-shadow:0 8px 32px rgba(37,99,235,0.12);}
.txt-testi-quote-icon{font-size:28px;color:#dbeafe;font-family:Georgia,serif;line-height:1;margin-bottom:6px;}
.txt-testi-card p{
  font-size:13.5px;color:#111;line-height:1.7;
  font-style:italic;margin-bottom:14px;
}
.txt-testi-author{display:flex;align-items:center;gap:10px;}
.txt-av{
  width:36px;height:36px;border-radius:50%;
  background:linear-gradient(135deg,#dbeafe,#ede9fe);
  display:flex;align-items:center;justify-content:center;
  font-size:12px;font-weight:700;color:#111;flex-shrink:0;
}
.txt-av-name{font-size:13px;font-weight:600;color:#0f172a;}
.txt-av-loc{font-size:11px;color:#6b7280;}
.txt-av-stars{color:#f59e0b;font-size:11px;}
.testi-google-badge{
  display:flex;align-items:center;gap:8px;margin-top:4px;
  background:#f8fafc;border-radius:10px;padding:12px 16px;
  border:1px solid #e2e8f0;
}
.g-icon{font-size:18px;}
.g-text{font-size:12px;color:#374151;}
.g-text strong{color:#0f172a;}

.msr-luxury-contact{
  position:relative;
  overflow:hidden;
  padding:0;
  background:#050d1a;
}
.mlc-bg{
  position:absolute;inset:0;
  background:
  radial-gradient(ellipse 60% 50% at 20% 50%, rgba(96, 165, 250, 0.12) 0%, transparent 60%),
radial-gradient(ellipse 40% 60% at 80% 30%, rgba(167, 139, 250, 0.08) 0%, transparent 60%),
linear-gradient(180deg, #1e293b 0%, #334155 100%);
}
.mlc-grid-overlay{
  position:absolute;inset:0;
 background-image: linear-gradient(rgba(255,255,255,0.005) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.005) 1px, transparent 1px);
  background-size:48px 48px;
  pointer-events:none;
}
.mlc-inner{
  position:relative;z-index:2;
  max-width:1200px;margin:0 auto;padding:80px 40px;
  display:grid;grid-template-columns:1fr 1.1fr;gap:72px;align-items:center;
}

/* LEFT */
.mlc-left{}
.mlc-eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  font-family:'DM Sans',sans-serif;
  font-size:11px;font-weight:500;letter-spacing:2.5px;text-transform:uppercase;
  color:rgba(148,163,184,0.8);margin-bottom:18px;
}
.mlc-eyebrow::before{
  content:'';display:block;width:24px;height:1px;background:rgba(148,163,184,0.4);
}
.mlc-left h2{
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:52px;font-weight:600;line-height:1.1;
  color:#f1f5f9;letter-spacing:-0.5px;margin-bottom:10px;
}
.mlc-left h2 em{
  font-style:italic;
  background:linear-gradient(135deg,#60a5fa,#a78bfa);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
}
.mlc-left p{
  font-family:'DM Sans',sans-serif;
  font-size:14px;color:#fff;line-height:1.75;margin-bottom:36px;
}
.mlc-contact-items{display:flex;flex-direction:column;gap:12px;}
.mlc-ci{
  display:flex;align-items:flex-start;gap:14px;
  padding:16px 20px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.07);
  border-radius:12px;
  transition:border-color 0.2s;
}
.mlc-ci:hover{border-color:rgba(96,165,250,0.25);}
.mlc-ci-icon{
  width:40px;height:40px;border-radius:10px;
  background:linear-gradient(135deg,rgba(37,99,235,0.25),rgba(124,58,237,0.25));
  border:1px solid rgba(96,165,250,0.2);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.mlc-ci-icon svg{width:16px;height:16px;fill:#60a5fa;}
.mlc-ci-label{
  font-family:'DM Sans',sans-serif;
  font-size:10px;font-weight:500;letter-spacing:1.5px;text-transform:uppercase;
  color:#fff;margin-bottom:4px;
}
.mlc-ci-val{
  font-family:'DM Sans',sans-serif;
  font-size:13px;color:#cbd5e1;line-height:1.6;
}
.mlc-ci-val a{color:#93c5fd;text-decoration:none;}

/* RIGHT — FORM CARD */
.mlc-form-card{
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 24px;
  padding: 40px 36px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 32px 80px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.2);
}
.mlc-form-title{
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:22px;font-weight:600;color:#9393FA;margin-bottom:4px;
}
.mlc-form-sub{
  font-family:'DM Sans',sans-serif;
  font-size:12px;color:#fff;margin-bottom:28px;
}
.mlc-form-row{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-bottom:14px;}
.mlc-form-row.full-row{grid-template-columns:1fr;}
.mlc-fg{position:relative;}
.mlc-fg label{
  display:block;font-family:'DM Sans',sans-serif;
  font-size:10px;font-weight:500;letter-spacing:1.5px;text-transform:uppercase;
  color:#fff;margin-bottom:7px;
}
.mlc-fg input,
.mlc-fg select,
.mlc-fg textarea{
  width:100%;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:10px;
  padding:13px 16px;
  font-family:'DM Sans',sans-serif;
  font-size:13.5px;
  color:#fff;
  outline:none;
  transition:border-color 0.25s,background 0.25s,box-shadow 0.25s;
  -webkit-appearance:none;appearance:none;
}
.mlc-fg input::placeholder,
.mlc-fg textarea::placeholder{color:rgba(148,163,184,0.35);}
.mlc-fg input:focus,
.mlc-fg select:focus,
.mlc-fg textarea:focus{
  border-color:rgba(96,165,250,0.5);
  background:rgba(255,255,255,0.08);
  box-shadow:0 0 0 3px rgba(37,99,235,0.12);
}
.mlc-fg select{cursor:pointer;}
.mlc-fg select option{background:#0f172a;color:#e2e8f0;}
.mlc-fg textarea{resize:vertical;min-height:100px;}
.mlc-select-wrap{position:relative;}
.mlc-select-wrap::after{
  content:'';position:absolute;right:14px;top:50%;transform:translateY(-50%);
  border:4px solid transparent;border-top-color:rgba(148,163,184,0.5);
  pointer-events:none;
}
.mlc-submit-btn{
  width:100%;margin-top:6px;
  background:linear-gradient(135deg,#1d4ed8 0%,#7c3aed 100%);
  border:none;border-radius:12px;
  padding:15px 24px;
  font-family:'DM Sans',sans-serif;
  font-size:14px;font-weight:500;
  color:#fff;cursor:pointer;
  letter-spacing:0.3px;
  transition:opacity 0.2s,transform 0.15s,box-shadow 0.2s;
  box-shadow:0 4px 20px rgba(37,99,235,0.3);
  position:relative;overflow:hidden;
}
.mlc-submit-btn::before{
  content:'';position:absolute;inset:0;
  background:linear-gradient(135deg,rgba(255,255,255,0.08),transparent);
  pointer-events:none;
}
.mlc-submit-btn:hover{opacity:0.92;transform:translateY(-1px);box-shadow:0 8px 28px rgba(37,99,235,0.4);}
.mlc-submit-btn:active{transform:translateY(0);opacity:1;}
.mlc-form-note{
  font-family:'DM Sans',sans-serif;
  font-size:11px;color:#fff;
  text-align:center;margin-top:12px;
}

@media(max-width:768px){
  .mlc-inner{grid-template-columns:1fr;gap:40px;padding:50px 20px;}
  .mlc-left h2{font-size:36px;}
  .mlc-form-row{grid-template-columns:1fr;}
  .mlc-form-card{padding:28px 20px;}
}