/* ================================================================
   DCX About Page — Consultation + Reels + Contact block
   Fully isolated: zero dependency on Bootstrap or any shared CSS.
   All classes prefixed dcx- to avoid any conflict site-wide.
   ================================================================ */

@font-face {
  font-family: 'Poppins-Regular';
  src: url("../fonts/Poppins/Poppins-Regular.ttf");
}

@font-face {
  font-family: 'Poppins-Medium';
  src: url("../fonts/Poppins/Poppins-Medium.ttf");
}

@font-face {
  font-family: 'Poppins-SemiBold';
  src: url("../fonts/Poppins/Poppins-SemiBold.ttf");
}

@font-face {
  font-family: 'Poppins-Bold';
  src: url("../fonts/Poppins/Poppins-Bold.ttf");
}

@font-face {
  font-family: 'Poppins-ExtraBold';
  src: url("../fonts/Poppins/Poppins-ExtraBold.ttf");
}

@keyframes dcx-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ── Shared inner container ── */
.dcx-consult-inner,
.dcx-contact-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

/* ================================================================
   1. Book A Consultation
   ================================================================ */
.dcx-consult-section {
  background: #1F1F1F;
  padding: 60px 0;
  width: 100%;
  box-sizing: border-box;
}

.dcx-consult-title {
  font-family: Poppins-SemiBold, sans-serif;
  font-size: 1.625rem;
  color: #ffffff;
  text-align: center;
  margin: 0 0 12px 0;
  padding: 0;
  font-weight: normal;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .dcx-consult-title {
    font-size: 2rem;
  }
}

.dcx-consult-subtitle {
  font-family: Poppins-Regular, sans-serif;
  color: #E39482;
  font-size: 1.375rem;
  text-align: center;
  margin: 0 0 12px 0;
  padding: 12px 0;
  line-height: 1.4;
}

.dcx-consult-buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 16px;
  flex-wrap: wrap;
  padding: 0 10px;
}

.dcx-consult-btn {
  background: #E39482;
  color: #ffffff;
  font-family: Poppins-SemiBold, sans-serif;
  font-size: 1rem;
  padding: 15px 20px;
  border-radius: 80px;
  border: none;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 280px;
  flex: 0 1 380px;
  cursor: pointer;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .dcx-consult-btn {
    font-size: 1.375rem;
    padding: 20px 30px;
  }
}

.dcx-consult-btn:hover {
  background: #FFEDE8;
  color: #000000;
  text-decoration: none;
}

/* ================================================================
   2. Featured In / Reels Slider
   ================================================================ */
.dcx-reels-section {
  background: #000000;
  width: 100%;
  padding: 20px 0;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
}

.dcx-reels-title {
  font-family: Poppins-SemiBold, sans-serif;
  font-size: 1.625rem;
  color: #ffffff;
  text-align: center;
  padding-bottom: 48px;
  margin: 0;
}

@media (min-width: 768px) {
  .dcx-reels-title {
    font-size: 2rem;
  }
}

.dcx-reels-track {
  display: flex;
  width: max-content;
  animation: dcx-scroll 15s linear infinite;
  margin-bottom: 3rem !important;
}

.dcx-reels-track:hover {
  animation-play-state: paused;
}

.dcx-reels-slide {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 50px;
  background: #ffffff;
  border-radius: 6px;
  overflow: hidden;
  width: 160px;
  height: 99px;
}

.dcx-reels-slide img {
  height: 99px;
  width: auto;
  display: block;
  background: #ffffff;
}

/* ================================================================
   3. Contact Block
   ================================================================ */
.dcx-contact-section {
  background: #ffffff;
  padding: 60px 0;
  width: 100%;
  box-sizing: border-box;
}

.dcx-contact-logo {
  text-align: center;
  margin-bottom: 20px;
}

.dcx-contact-logo img {
  max-width: 260px;
  height: auto;
  display: inline-block;
}

.dcx-contact-info-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 24px 0;
}

.dcx-contact-info-col {
  flex: 0 0 auto;
  min-width: 220px;
  text-align: center;
}

.dcx-contact-info-text {
  font-family: Poppins-SemiBold, sans-serif;
  font-size: 14px;
  text-align: center;
  margin: 0;
  color: #000000;
}

.dcx-contact-info-text a {
  color: #000000;
  text-decoration: none;
}

.dcx-contact-info-text a:hover {
  text-decoration: underline;
}

.dcx-wa-wrap {
  text-align: center;
  margin-top: 8px;
}

.dcx-wa-btn {
  background: #27D045;
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
  padding: 0 30px;
  color: #ffffff;
  height: 44px;
  text-decoration: none;
  border-radius: 80px;
  border: none;
  font-family: Poppins-SemiBold, sans-serif;
  cursor: pointer;
  box-sizing: border-box;
}

.dcx-wa-btn svg {
  width: 35px;
  height: 35px;
  flex-shrink: 0;
}

.dcx-wa-btn span {
  padding-left: 12px;
}

.dcx-wa-btn:hover {
  color: #000000;
  text-decoration: none;
}

/* ================================================================
   DR-FOOTER — Scoped footer from dr-amrendra-kumar.html
   All classes prefixed dr-f- to avoid conflicts.
   ================================================================ */

.dr-f-footer {
  width: 100% !important;
  display: block !important;
  box-sizing: border-box !important;
  background: #fff !important;
  font-family: Poppins-Regular, sans-serif !important;
}

.dr-f-wrapper-container {
  max-width: 1440px !important;
  margin: 0 auto !important;
  box-sizing: border-box !important;
  width: 100% !important;
  padding: 0 15px !important;
}

.dr-f-poppinsSemiBold {
  font-family: 'Poppins-SemiBold', sans-serif !important;
}

.dr-f-bg-footer {
  background: #ECBEB4 !important;
}

.dr-f-bg-secondry {
  background: #E39482 !important;
}

.dr-f-darkGry-bg {
  background: #1F1F1F !important;
}

.dr-f-bg-black {
  background: #000000 !important;
}

.dr-f-footerLogo {
  text-align: center !important;
  padding-bottom: 20px !important;
}

.dr-f-footerLogo img {
  max-width: 260px !important;
  height: auto !important;
}

.dr-f-mail_info_row {
  margin: 0 !important;
  padding: 24px 0 !important;
}

.dr-f-mail_info_row p {
  font-size: 14px !important;
  margin-bottom: 0 !important;
}

.dr-f-tel-icon {
  width: 18px !important;
  height: 18px !important;
  background: url("../team/img/icons/tel-icon.svg") no-repeat center center !important;
  background-size: 100% !important;
  display: inline-block !important;
  vertical-align: middle !important;
}

.dr-f-mail-icon {
  width: 18px !important;
  height: 18px !important;
  background: url("../team/img/icons/mail-icon.svg") no-repeat center center !important;
  background-size: 100% !important;
  display: inline-block !important;
  vertical-align: middle !important;
}

.dr-f-whatsapp-btn {
  background: #27D045 !important;
  display: inline-flex !important;
  align-items: center !important;
  font-size: 0.875rem !important;
  padding: 0 30px !important;
  color: #ffffff !important;
  height: 44px !important;
  text-decoration: none !important;
  border-radius: 80px !important;
  border: none !important;
  font-family: Poppins-SemiBold, sans-serif !important;
}

.dr-f-whatsapp-btn:hover {
  color: #000000 !important;
}

.dr-f-whatsapp-btn svg {
  width: 35px !important;
  height: 35px !important;
}

.dr-f-linkTitle {
  font-size: 14px !important;
  padding-left: 30px !important;
  position: relative !important;
  margin: 15px 0 10px 0 !important;
  font-family: Poppins-SemiBold, sans-serif !important;
}

.dr-f-linkTitle span {
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
}

.dr-f-linkTitle span img {
  width: 18px !important;
}

.dr-f-links {
  list-style: none !important;
  margin: 0 !important;
  padding-left: 30px !important;
  display: flex !important;
  flex-wrap: wrap !important;
}

@media (min-width: 768px) {
  .dr-f-links {
    display: block !important;
  }
}

.dr-f-links li {
  padding: 0 !important;
  margin: 0 !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
  width: 100% !important;
  /* Changed from 50% to 100% for mobile */
  padding-right: 15px !important;
  list-style: none !important;
}

@media (min-width: 768px) {
  .dr-f-links li {
    width: 130% !important;
    padding-right: 0 !important;
  }
}

.dr-f-links li a {
  font-size: 14px !important;
  line-height: 2 !important;
  text-decoration: none !important;
  color: #000 !important;
}

.dr-f-links li a:hover {
  text-decoration: underline !important;
}

.dr-f-social-links {
  padding-left: 25px !important;
  margin-top: 15px !important;
}

.dr-f-sprite {
  background: #fff url("../team/img/icons/sprite-icon.svg") no-repeat left top !important;
}

.dr-f-sprite.dr-f-icon {
  width: 28px !important;
  height: 28px !important;
  display: inline-block !important;
  vertical-align: top !important;
  margin-right: 8px !important;
  border-radius: 100% !important;
  position: relative !important;
}

.dr-f-yt {
  background-position: 8px center !important;
}

.dr-f-fb {
  background-position: -27px center !important;
}

.dr-f-pn {
  background-position: -63px center !important;
}

.dr-f-in {
  background-position: -96px center !important;
}

.dr-f-tw {
  background-position: -129px center !important;
}

.dr-f-ln {
  background-position: -164px center !important;
}

.dr-f-genitalAesthetics {
  border-top: 1px solid #B9968E !important;
}

.dr-f-heading-8 {
  font-size: 0.875rem !important;
  font-family: Poppins-SemiBold, sans-serif !important;
}

.dr-f-genitalAesthetics a {
  font-size: 14px !important;
  text-decoration: none !important;
  color: #000000 !important;
}

.dr-f-genitalAesthetics a:hover {
  text-decoration: underline !important;
}

.dr-f-association-row .dr-f-attociationTitle {
  font-size: 14px !important;
  font-family: Poppins-SemiBold, sans-serif !important;
  text-align: center !important;
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.dr-f-locations {
  border-top: 1px solid #FFA996 !important;
}

@media (min-width: 768px) {
  .dr-f-border-right {
    border-right: 1px solid #FFA996 !important;
  }
}

.dr-f-address {
  padding-left: 30px !important;
  position: relative !important;
}

.dr-f-address::after {
  position: absolute !important;
  left: 0 !important;
  top: -2px !important;
  background: url("../team/img/icons/address.png") no-repeat left top !important;
  content: "" !important;
  width: 19px !important;
  height: 21px !important;
}

.dr-f-heading-7 {
  font-size: 0.875rem !important;
  font-family: Poppins-SemiBold, sans-serif !important;
  text-align: left !important;
}

@media (min-width: 768px) {
  .dr-f-heading-7 {
    font-size: 0.875rem !important;
  }
}

.dr-f-darkGry-bg p {
  color: #fff !important;
  font-size: 0.875rem !important;
  line-height: 1.6 !important;
  text-align: center !important;
}

.dr-f-darkGry-bg .dr-f-heading-7 {
  text-align: center !important;
}

.dr-f-bg-black p {
  color: #fff !important;
  font-size: 14px !important;
  margin: 0 !important;
}

.dr-f-bg-black a {
  color: #fff !important;
  text-decoration: none !important;
}

.dr-f-bg-black a:hover {
  text-decoration: underline !important;
}

.dr-f-association-row iframe {
  width: 100% !important;
}

/* ================================================================
   OUR ASSOCIATIONS BOLDING (Exact match for dr-amrendra-kumar.html)
   ================================================================ */

.dr-f-association-row .dr-f-attociationTitle {
  font-family: 'Poppins-Bold', sans-serif !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  color: #000000 !important;
}

.dr-f-heading-7 {
  font-family: 'Poppins-Bold', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.875rem !important;
  color: #000000;
}

.dr-f-association-row .dr-f-heading-8 {
  font-family: 'Poppins-Bold', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.875rem !important;
  color: #000000 !important;
  margin-bottom: 4px !important;
}

.dr-f-association-row p.dr-f-heading-8 {
  font-family: 'Poppins-Regular', sans-serif !important;
  font-weight: 400 !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
  color: #000000 !important;
}

.dr-f-association-row p.dr-f-heading-8 strong {
  font-family: 'Poppins-Bold', sans-serif !important;
  font-weight: 700 !important;
}

/* Button exact match from reference */
.dr-f-association-row a.rounded-pill {
  background: #ECBEB4 !important;
  color: #fff !important;
  font-size: 14px !important;
  font-family: 'Poppins-Regular', sans-serif !important;
  padding: 4px 14px !important;
  display: inline-block !important;
  border-radius: 999px !important;
  text-decoration: none !important;
  line-height: 1.2 !important;
  margin-top: 5px !important;
}

.dr-f-association-row a.rounded-pill:hover {
  background: #E39482 !important;
  text-decoration: none !important;
}

/* Fallback for pages not using Bootstrap 5 utility classes */
.dr-f-footer a.rounded-pill {
  display: inline-block !important;
  padding: 4px 14px !important;
  border-radius: 999px !important;
  line-height: 1.2 !important;
}

/* ================================================================
   FLOATING BUTTON BAR (MOBILE)
   ================================================================ */
.dr-f-floating-button {
  width: 100% !important;
  position: fixed !important;
  left: 0 !important;
  bottom: 0 !important;
  background: #fff !important;
  z-index: 9999 !important;
  display: flex !important;
  padding: 10px 5px !important;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1) !important;
  box-sizing: border-box !important;
  transition: transform 0.3s ease, opacity 0.3s ease !important;
  transform: translateY(100px);
  opacity: 0;
}

@media (min-width: 768px) {
  .dr-f-floating-button {
    display: none !important;
  }
}

.dr-f-floating-button .col-6 {
  flex: 0 0 50% !important;
  max-width: 50% !important;
  padding: 0 5px !important;
  box-sizing: border-box !important;
}

.dr-f-floating-button .dr-f-btn-primary {
  background: #E39482 !important;
  color: #fff !important;
  font-family: 'Poppins-SemiBold', sans-serif !important;
  font-size: 14px !important;
  padding: 12px 5px !important;
  border-radius: 80px !important;
  text-decoration: none !important;
  display: block !important;
  text-align: center !important;
  width: 100% !important;
  line-height: 1.2 !important;
  border: none !important;
}

.dr-f-floating-button .dr-f-btn-primary:hover {
  background: #ECBEB4 !important;
}


/* Ensure footer content is not hidden behind the floating bar on mobile */
@media (max-width: 767px) {
  .dr-f-footer {
    padding-bottom: 10px !important;
  }
}
