

body {
    margin: 0  !important;
    padding: 0 !important;
    overflow-x: hidden;
}
/* Floating buttons wrapper (same rahega) */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    z-index: 9999;
}

/* Round icon buttons (same) */
.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    text-decoration: none;
    transition: 0.3s;
}

/* WhatsApp */
.float-btn.whatsapp {
    background-color: #25D366;
}

/* Call */
.float-btn.call {
    background-color: #1A7C79;
}

/* ✅ Book a Meeting – ROUNDED PILL (WhatsApp ke upar) */
.float-meeting-btn {
    display: inline-flex;                 /* 👈 important */
    align-items: center;
    justify-content: center;

    background: #ffffff !important;
    color: #000000 !important;
    padding: 12px 22px;
    font-size: 16px;
    font-weight: 700;

    border-radius: 999px;                 /* PURE ROUNDED */
    text-decoration: none !important;     /* 👈 underline remove */

    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    white-space: nowrap;
    transition: all 0.25s ease;
}

.float-meeting-btn:hover {
    background: #000000 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}



/* Hover effect */
.float-btn:hover {
    transform: scale(1.12);
}

* {
  font-family: 'Poppins', sans-serif;
}

.header, .navbar {
  background: #ffffff !important;
}

.logo {
  width: 200px;
}

.nav-link {
  font-weight: 500;
  font-size: 15px;
  color: #333 !important;
}

.nav-link:hover {
  color: #118182 !important;
}

.btn-contact {
  padding: 8px 18px;
  background: #118182;
  color: white !important;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  margin-left: 70px;
}

/* banner css end  */

/* Desktop Image Show */
.banner-desktop {
  width: 100%;
  display: block;
}

/* Mobile Image Hidden Default */
.banner-mobile {
  width: 100%;
  display: none;
}

/* Mobile View */
@media (max-width: 768px) {
  .banner-desktop {
    display: none;
  }
  .banner-mobile {
    display: block;
  }
  .btn-contact{
    margin: 0;
  }
}


.stats-icon {
  width: 40px;
  filter: brightness(0) saturate(100%) invert(37%) sepia(61%) saturate(470%) hue-rotate(128deg);
}

.stats-number {
  font-size: 40px;
  font-weight: 700;
  color: #000; /* screenshot black */
  display: inline-block;
  position: relative;
}

.stats-number.plus::after {
  content: "+";
  font-size: 30px;
  font-weight: 700;
  color: #000;
  margin-left: 2px;
}

.stats-number.percent::after {
  content: "%";
  font-size: 30px;
  font-weight: 700;
  color: #000;
  margin-left: 2px;
}

.stats-title {
  margin-top: 6px;
  font-size: 15px;
  color: #444;
}

#counter img {
  display: block;
  margin: 0 auto;
}

/* counter :end */
.category-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 12px;
  transition: 0.3s;
  border: 1px solid #edf3ee;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 22px rgba(0,0,0,0.08);
}

.cat-img {
  background: linear-gradient(135deg, #E8FFF1, #DFFFF0);
  /* padding: 35px; */
  border-radius: 12px;
  text-align: center;
  margin-bottom: 18px;
}

.cat-img img {
    width: 100%;
    border-radius: 12px;
}
.cat-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.cat-sub {
  color: #666;
  font-size: 14px;
  margin-bottom: 10px;
}

.cat-link {
  color: #009873;
  font-weight: 600;
  text-decoration: none;
}

.cat-link:hover {
  text-decoration: underline;
}
/* catagry :end */


.product-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 18px;
  text-align: center;
  transition: 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.product-img {
  width: 90%;
  margin: auto;
}

.product-title {
  font-size: 15px;
  font-weight: 600;
  margin-top: 10px;
}

.product-rating {
  font-size: 13px;
  margin-top: 8px;
  color: #444;
}
/* Move dots downward */
.mySwiper {
    padding-bottom: 50px !important;
}

/* Position dots properly */
.swiper-pagination {
    bottom: 20px !important;
}

/* Pagination styling */
.swiper-pagination-bullet {
  width: 25px;
  height: 6px;
  background: #a4d0c7;
  border-radius: 10px;
  opacity: 1;
  transition: 0.3s;
}

.swiper-pagination-bullet-active {
  background: #118182;
  width: 32px;
}

/* best seller proldeuct */

.marquee-section {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.track {
  display: flex;
  width: max-content;
  animation: scroll 25s linear infinite;
}
.track {
    margin: 10px 0;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Box design */
.cert-box {
  background: #fff;
  padding: 12px 18px;
  border-radius: 10px;
  margin: 0 15px;
  box-shadow: 0px 0px 12px rgba(0,0,0,0.08);
  min-width: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-box img {
  width: 100%;
  height: 55px;
  object-fit: contain;
}

/* certifacetion end  */


.info-box {
  padding-right: 10px;
}

.info-icon {
  font-size: 28px;
  margin-bottom: 10px;
  color: #000;
}

.info-title {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 5px;
}

.info-text {
  font-size: 14px;
  color: #444;
  margin-bottom: 6px;
}

.info-link {
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  color: #000;
}

.feature-img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}
/* about us  */


.about-title {
  font-size: 32px;
  font-weight: 700;
}

.about-line {
  width: 70px;
  height: 3px;
  background: #000;
  margin: 10px 0 20px 0;
}

.about-text {
  color: #444;
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 15px;
}

.about-list {
  margin-bottom: 25px;
}

.about-item {
  font-size: 16px;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid #ddd;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-item i {
  font-size: 18px;
  color: #118182;
}

.about-btn {
  background: #118182;
  color: #fff;
  padding: 10px 22px;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.about-btn:hover {
  background: #f49911;
}

.video-wrapper {
  border-radius: 10px;
  overflow: hidden;
}

.about-video {
  width: 100%;
  border-radius: 10px;
}

/* bread- comparing  */
.logo-slider {
  overflow: hidden;
  padding: 20px 0;
  background: #fff;
}

.logo-track {
  display: flex;
  gap: 50px;
  width: calc(200px * 14); /* Number of logos * width */
  animation: scroll 25s linear infinite;
}

.logo-item {
  background: #ffffff;
  padding: 15px 30px;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.10);
}

.logo-item img {
  width: 140px;
  height: auto;
  object-fit: contain;
}

/* Marquee Animation */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* Adjust spacing mobile */
@media (max-width: 768px) {
  .info-box {
            text-align: left;
        box-shadow: #0000000f 0px 0px 3px 2px;
        padding: 15px 15px;
        border-radius: 12px;
  }
}


/* testamonial */
.testimonial-box {
  background: #fff;
  border-radius: 14px;
  min-height: 230px;
  border: 1px solid #eee;
}
.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    max-width: 60px;
    height: 60px;
    object-fit: cover;
}
.testimonial-box p {
  font-size: 14px;
  color: #444;
}

.stars {
  letter-spacing: 2px;
  font-size: 18px;
}
.testimonial-box {
    background: #fff;
    border-radius: 12px;
    min-height: 250px;
}

.owl-nav button {
    font-size: 35px !important;
    color: #118182 !important;
    background: none !important;
    position: absolute;
    top: 40%;
}

.owl-nav .owl-prev { left: -40px; }
.owl-nav .owl-next { right: -40px; }
.owl-dots {
    text-align: center;
    margin-top: 20px;
}

.owl-dots .owl-dot span {
    width: 30px;
    height: 6px;
    display: block;
    background: #b9d8d3;
    margin: 0 4px;
    border-radius: 10px;
    transition: .3s;
}

.owl-dots .owl-dot.active span {
    background: #1a7c79;
    width: 40px;
}
@media (max-width: 768px) {
    .owl-nav {
        display: none !important;
    }
}

/* half -slider */
.factory-slider .slide-box img {
    width: 100%;
    max-width: 608px;
    height: 328px;
    transition: width 2s;
    border-radius: 10px;
}
/* .owl-item.cloned.active {
    margin-left: -80px;
} */
.factory-slider .owl-stage-outer {
    max-height: 335px;
}
.factory-tour-section .owl-nav button {
  position: absolute;
  top: 50%;
  /* transform: translateY(-50%); */
  background: #118182 !important;
  color: #fff !important;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 24px !important;
}

/* Prev & Next Positions */
.factory-tour-section .owl-nav .owl-prev {
  left: -50px;
}

.factory-tour-section .owl-nav .owl-next {
  right: -50px;
}
/* .owl-item.active.center {
    max-width: 600px !important;
    width: 720px !important;
    transition: width 2s;
} */

/* Mobile Responsive */
@media (max-width: 768px) {
    .small-img {
        display: none;
    }
    .main-img {
        width: 100%;
    }
}

.feature-img {
  height: 400px !important;
}

@media screen and (max-width: 580px) {

 .nav-link {
    font-weight: 500;
    font-size: 18px;
    color: #333 !important;
    padding: 5px 0;
}
}
.carousel-item img {
  width: 100%;
}
.custom-width{
  max-width: 980px !important;
  margin: 0 auto;
}


/* footer css */
.footer-section {
    background: #1a7c79;     /* Updated Background */
    color: #ffffff;          /* White Text */
    font-family: 'Poppins', sans-serif;
}

.footer-text {
    font-size: 14px;
    color: #e8f6f5;          /* Soft white for paragraph */
    line-height: 22px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    text-decoration: none;
    color: #ffffff;          /* White links */
    font-size: 14px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #f49911;          /* Brand highlight on hover */
}

.copyright-text {
    font-size: 14px;
    color: #e8f6f5;          /* Light white */
}
.footer-logo img {
    width: 140px !important;
}
hr {
    border-top: 1px solid rgba(255, 255, 255, 0.3); /* Soft white line */
}
.Export-Manufacturing{
  background-color: #fff;
}

/* boss img */

.team-section {
    font-family: 'Poppins', sans-serif;
}

.team-card {
    padding: 30px 20px;
    background: #f8fdfb;
    border-radius: 12px;
}
.team-img {
    width: 100%;
    max-width: 320px;
    border-radius: 8px;
    object-fit: cover;
}

.team-role {
    font-size: 14px;
    color: #888;
    margin-bottom: 10px;
}

.team-desc {
    font-size: 14px;
    color: #555;
    line-height: 24px;
    max-width: 450px;
    margin: auto;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .team-img {
        max-width: 260px;
    }
}

/* form */

.partner-section {
    font-family: 'Poppins', sans-serif;
}

/* Input box styling */
.form-input {
    width: 100%;
    padding: 12px 14px 12px 40px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    transition: all .3s ease;
}

/* Icons inside input */
.form-icon {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    font-size: 17px;
    color: #1a7c79;
    z-index: 10;
}

/* Focus styling */
.form-input:focus {
    border-color: #1a7c79;
    box-shadow: 0 0 4px rgba(26, 124, 121, 0.3);
}

/* Submit Button */
.btn-submit {
    background: #1a7c79;
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
    border: none;
}

.btn-submit:hover {
    background: #155d56;
}

/* Dropdown arrow fix */
.form-select {
    padding-left: 40px !important;
}
.form-partner{
  max-width: 1000px !important;
}


.cert-box img{
  max-width: 100px ;
}

.last-number .stats-title {
    /* margin-top: -10px; */
    font-size: 15px;
    color: #444;
}
.last-number img{
  max-height: 40px;
  object-fit: contain;
}
.contact-page {
  font-family: 'Poppins', sans-serif;
}

.contact-page h2 {
  font-size: 32px;
  color: #222;
}

.office-block h5 {
  font-size: 18px;
  color: #000;
  margin-bottom: 4px;
}

.office-block p {
  font-size: 14.5px;
  color: #444;
}

.contact-map iframe {
  border-radius: 12px;
  box-shadow: 0px 4px 20px rgba(0,0,0,0.08);
}

.contact-box {
  background: #fff;
  border-radius: 12px;
  border-left: 5px solid #1a7c79;
}

.contact-box p {
  font-size: 15px;
}

.contact-box i {
  font-size: 18px;
}

@media(max-width: 768px) {
  .contact-page h2 {
    font-size: 26px;
  }
}
    .thankyou-box {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    max-width: 520px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin: 100px auto;
}
    .thankyou-icon {
      font-size: 60px;
      color: #118182 !important;
      margin-bottom: 15px;
    }
    .thankyou-box h1 {
      font-size: 28px;
      margin-bottom: 10px;
      font-weight: 700;
    }
    .thankyou-box p {
      color: #555;
      font-size: 16px;
      margin-bottom: 25px;
    }
    .thankyou-box a.btn {
      padding: 10px 24px;
      border-radius: 30px;
    }
    
    
    
    /* DrMantra Brand Variables */
    :root {
      --dm-primary: #1a7c79;
      --dm-primary-dark: #155d56;
      --dm-primary-hover: #118182;
      --dm-accent: #f49911;
      --dm-text-dark: #222;
      --dm-text-gray: #444;
      --dm-text-light: #888;
      --dm-bg-light: #f8fdfb;
      --dm-border: #ccc;
      --dm-white: #ffffff;
      --dm-shadow: 0 6px 20px rgba(0, 0, 0, 0.10);
    }

    * {
      font-family: 'Poppins', sans-serif;
    }

    body {
      /*background: linear-gradient(135deg, #f8fdfb 0%, #e8f6f5 100%);*/
      min-height: 100vh;
      margin: 0;
      padding: 0;
    }

    /* Header Bar */
    .header-bar {
      background: var(--dm-white);
      padding: 15px 0;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .header-bar .logo {
      width: 160px;
    }

    .back-link {
      color: var(--dm-text-dark);
      text-decoration: none;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: 0.3s;
    }

    .back-link:hover {
      color: var(--dm-primary);
    }

    /* Main Container */
    .booking-container {
      max-width: 950px;
      margin: 40px auto;
      padding: 0 15px;
    }

    .booking-card {
      background: var(--dm-white);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: var(--dm-shadow);
    }

    /* Card Header */
    .card-header {
      background: var(--dm-primary);
      color: var(--dm-white);
      padding: 24px 30px;
      text-align: center;
    }

    .card-header h1 {
      font-size: 24px;
      font-weight: 600;
      margin: 0;
    }

    .card-header p {
      margin: 8px 0 0;
      opacity: 0.9;
      font-size: 14px;
    }

    /* Steps Indicator */
    .steps-indicator {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 20px;
      padding: 20px;
      background: #fafafa;
      border-bottom: 1px solid #eee;
    }

    .step {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .step-number {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--dm-border);
      color: var(--dm-text-gray);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
      font-size: 14px;
      transition: 0.3s;
    }

    .step.active .step-number {
      background: var(--dm-primary);
      color: var(--dm-white);
    }

    .step.completed .step-number {
      background: var(--dm-accent);
      color: var(--dm-white);
    }

    .step-label {
      font-size: 13px;
      font-weight: 500;
      color: var(--dm-text-light);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .step.active .step-label {
      color: var(--dm-primary);
    }

    .step-connector {
      width: 60px;
      height: 2px;
      background: var(--dm-border);
    }

    .step-connector.filled {
      background: var(--dm-primary);
    }

    /* Main Content Layout */
    .main-content {
      display: flex;
      min-height: 450px;
    }

    /* Left Panel - Calendar */
    .calendar-panel {
      width: 40%;
      background: var(--dm-primary);
      padding: 30px;
      color: var(--dm-white);
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .profile-section {
      text-align: center;
      margin-bottom: 25px;
    }

    .profile-img {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      border: 3px solid rgba(255, 255, 255, 0.3);
      object-fit: cover;
      margin-bottom: 12px;
    }

    .profile-name {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 4px;
    }

    .profile-title {
      font-size: 13px;
      opacity: 0.8;
    }

    /* Calendar Widget */
    .calendar-widget {
      background: rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      padding: 20px;
      width: 100%;
    }

    .calendar-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 15px;
    }

    .calendar-month {
      font-weight: 600;
      font-size: 15px;
    }

    .calendar-nav {
      display: flex;
      gap: 6px;
    }

    .calendar-nav button {
      width: 28px;
      height: 28px;
      border-radius: 6px;
      border: none;
      background: rgba(255, 255, 255, 0.15);
      color: white;
      cursor: pointer;
      transition: 0.2s;
    }

    .calendar-nav button:hover {
      background: rgba(255, 255, 255, 0.25);
    }

    .calendar-grid {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 4px;
      text-align: center;
      min-height: 200px;
    }

    .calendar-day-header {
      font-size: 10px;
      font-weight: 600;
      opacity: 0.7;
      padding: 6px 0;
    }

    .calendar-day {
      aspect-ratio: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      border-radius: 50%;
      cursor: pointer;
      transition: 0.2s;
    }

    .calendar-day.past {
      opacity: 0.3;
      cursor: not-allowed;
    }

    .calendar-day.available:hover {
      background: rgba(255, 255, 255, 0.2);
    }

    .calendar-day.selected {
      background: var(--dm-white);
      color: var(--dm-primary);
      font-weight: 600;
    }

    .calendar-day.today {
      border: 2px solid rgba(255, 255, 255, 0.5);
    }

    .calendar-day.empty {
      cursor: default;
    }

    .calendar-nav button:disabled,
    .calendar-nav button[disabled] {
      opacity: 0.3;
      cursor: not-allowed;
    }

    /* Right Panel - Time Selection */
    .time-panel {
      width: 60%;
      padding: 30px;
      background: var(--dm-white);
    }

    .info-block {
      margin-bottom: 20px;
    }

    .info-label {
      font-size: 12px;
      font-weight: 600;
      color: var(--dm-text-gray);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 6px;
    }

    .info-value {
      font-size: 14px;
      color: var(--dm-text-dark);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .info-value i {
      color: var(--dm-primary);
    }

    .duration-badge {
      display: inline-block;
      background: var(--dm-bg-light);
      padding: 10px 16px;
      border-radius: 6px;
      font-size: 14px;
      font-weight: 500;
      color: var(--dm-text-dark);
      border: 1px solid #eee;
    }

    .time-slots-container {
      margin-top: 20px;
    }

    .time-slots {
      display: grid;
      gap: 8px;
      max-height: 200px;
      overflow-y: auto;
      padding-right: 8px;
      opacity: 1;
      transition: opacity 0.15s ease;
    }

    .time-slots.loading {
      opacity: 0.5;
    }

    @keyframes fadeInSlot {
      from {
        opacity: 0;
        transform: translateY(5px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .time-slot.fade-in {
      animation: fadeInSlot 0.2s ease forwards;
    }

    .time-slots::-webkit-scrollbar {
      width: 5px;
    }

    .time-slots::-webkit-scrollbar-track {
      background: #f1f1f1;
      border-radius: 3px;
    }

    .time-slots::-webkit-scrollbar-thumb {
      background: #ccc;
      border-radius: 3px;
    }

    .time-slot {
      display: block;
      padding: 12px 18px;
      border: 1px solid var(--dm-border);
      border-radius: 6px;
      text-align: center;
      cursor: pointer;
      transition: 0.3s;
      font-weight: 500;
      font-size: 14px;
      color: var(--dm-text-dark);
      background: var(--dm-white);
    }

    .time-slot:hover {
      border-color: var(--dm-primary);
      background: var(--dm-bg-light);
    }

    .time-slot.selected {
      border-color: var(--dm-primary);
      background: var(--dm-primary);
      color: var(--dm-white);
    }

    .time-slot input {
      display: none;
    }

    .time-slot.booked {
      opacity: 0.5;
      cursor: not-allowed;
      background: #f5f5f5 !important;
      border-color: #ddd !important;
      position: relative;
    }

    .time-slot.booked span:first-child {
      text-decoration: line-through;
      color: #999;
    }

    .booked-label {
      font-size: 10px;
      color: #dc3545;
      text-transform: uppercase;
      margin-left: 8px;
      font-weight: 600;
    }

    /* Buttons - Matching DrMantra Style */
    .btn-next {
      width: 100%;
      margin-top: 20px;
      padding: 12px 28px;
      border: none;
      border-radius: 6px;
      background: var(--dm-primary);
      color: var(--dm-white);
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      transition: 0.3s;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .btn-next:hover {
      background: var(--dm-primary-dark);
    }

    /* Step 2: Form */
    .form-panel {
      padding: 40px;
      display: none;
    }

    .form-panel.active {
      display: block;
    }

    .form-header {
      text-align: center;
      margin-bottom: 30px;
    }

    .form-title {
      font-size: 22px;
      font-weight: 700;
      color: var(--dm-text-dark);
      margin-bottom: 8px;
    }

    .form-subtitle {
      color: var(--dm-text-gray);
      font-size: 14px;
    }

    .selected-time-badge {
      display: inline-block;
      background: var(--dm-primary);
      color: var(--dm-white);
      padding: 4px 12px;
      border-radius: 4px;
      font-weight: 600;
      margin-left: 6px;
      font-size: 13px;
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      max-width: 550px;
      margin: 0 auto;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      position: relative;
    }

    .form-group.full-width {
      grid-column: 1 / -1;
    }

    .form-label {
      font-size: 13px;
      font-weight: 600;
      color: var(--dm-text-gray);
      margin-bottom: 6px;
    }

    /* Form inputs matching DrMantra style */
    .form-input {
      width: 100%;
      padding: 12px 14px;
      border: 1px solid var(--dm-border);
      border-radius: 6px;
      font-size: 15px;
      font-family: 'Poppins', sans-serif;
      transition: all 0.3s ease;
      outline: none;
    }

    .form-input:focus {
      border-color: var(--dm-primary);
      box-shadow: 0 0 4px rgba(26, 124, 121, 0.3);
    }

    .form-input::placeholder {
      color: #aaa;
    }

    textarea.form-input {
      resize: vertical;
      min-height: 80px;
    }

    .form-actions {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 30px;
      padding-top: 20px;
      border-top: 1px solid #eee;
      max-width: 550px;
      margin-left: auto;
      margin-right: auto;
    }

    .btn-back {
      padding: 12px 24px;
      border: 1px solid var(--dm-border);
      border-radius: 6px;
      background: var(--dm-white);
      color: var(--dm-text-gray);
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: 0.3s;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .btn-back:hover {
      border-color: var(--dm-text-dark);
      color: var(--dm-text-dark);
    }

    /* Submit button matching DrMantra .btn-submit */
    .btn-submit {
      background: var(--dm-primary);
      color: var(--dm-white);
      padding: 12px 28px;
      border-radius: 6px;
      font-weight: 600;
      transition: 0.3s;
      border: none;
      font-size: 14px;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .btn-submit:hover {
      background: var(--dm-primary-dark);
    }

    /* Success State */
    .success-panel {
      display: none;
      text-align: center;
      padding: 60px 40px;
    }

    .success-panel.active {
      display: block;
    }

    .success-icon {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: var(--dm-primary);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
    }

    .success-icon i {
      font-size: 40px;
      color: var(--dm-white);
    }

    .success-title {
      font-size: 24px;
      font-weight: 700;
      color: var(--dm-text-dark);
      margin-bottom: 10px;
    }

    .success-message {
      color: var(--dm-text-gray);
      font-size: 14px;
      max-width: 400px;
      margin: 0 auto 20px;
    }

    .btn-home {
      display: inline-block;
      padding: 12px 28px;
      background: var(--dm-primary);
      color: var(--dm-white);
      text-decoration: none;
      border-radius: 6px;
      font-weight: 600;
      transition: 0.3s;
    }

    .btn-home:hover {
      background: var(--dm-primary-dark);
      color: var(--dm-white);
    }

    /* Footer */
    .footer-mini {
      text-align: center;
      padding: 20px;
      color: var(--dm-text-light);
      font-size: 13px;
    }

    .footer-mini a {
      color: var(--dm-primary);
      text-decoration: none;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .main-content {
        flex-direction: column;
      }

      .calendar-panel,
      .time-panel {
        width: 100%;
      }

      .calendar-panel {
        padding: 25px;
      }

      .steps-indicator {
        gap: 12px;
      }

      .step-connector {
        width: 30px;
      }

      .step-label {
        display: none;
      }

      .form-grid {
        grid-template-columns: 1fr;
      }

      .form-actions {
        flex-direction: column-reverse;
        gap: 12px;
      }

      .btn-back,
      .btn-submit {
        width: 100%;
        justify-content: center;
      }
    }

    /* Shake animation for validation */
    @keyframes shake {

      0%,
      100% {
        transform: translateX(0);
      }

      25% {
        transform: translateX(-8px);
      }

      75% {
        transform: translateX(8px);
      }
    }

    .shake {
      animation: shake 0.4s ease;
    }