  /* Modern Card Styling */
  .modern-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  }

  .modern-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  }

  .modern-card img {
    height: 220px;
    object-fit: cover;
  }

  .modern-card .card-body {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
  }

  .modern-card .btn {
    transition: all 0.3s ease;
  }

  .modern-card .btn:hover {
    background-color: #0a58ca;
    transform: scale(1.05);
  }

  /* Terms Link Styling */
  .terms-link {
    display: inline-block;
    margin-top: 25px;
    font-size: 15px;
    color: #0d6efd;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  .terms-link:hover {
    color: #084298;
    text-decoration: underline;
  }

  /* Modal Styling */
  .custom-modal {
    display: none;
    position: fixed;
    z-index: 1050;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
  }

  .custom-modal-content {
    background: #fbfbf9;
    border-radius: 15px;
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    animation: fadeInUp 0.4s ease;
    position: relative;
  }

  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .modal-close {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 22px;
    color: #333;
    cursor: pointer;
    transition: color 0.3s ease;
  }
  .modal-close:hover {
    color: #000;
  }

  .custom-modal-content h2 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: bold;
  }

  .custom-modal-content ul {
    padding-left: 20px;
  }
  .modern-list {
    padding-left: 0;
    margin: 0;
    list-style: none; /* removes default bullets */
  }

  .modern-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
    text-align: left; /* ensures text alignment */
  }

  .modern-list li i {
    color: #0d6efd; /* Bootstrap primary blue */
    font-size: 14px;
    width: 20px;      /* fixed width column for icons */
    text-align: center;
    margin-top: 3px;  /* aligns icon with text */
    flex-shrink: 0;
  }
  .schedule-section {
    background: #f9fafb;
    padding: 60px 20px;
    font-family: 'Poppins', sans-serif;
}

.schedule-section h2 {
    font-weight: 700;
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.schedule-section p {
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 2rem;
}

/* Modern Table Style */
.schedule-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.schedule-table thead {
    background: linear-gradient(90deg, #0d6efd, #0056b3);
    color: #fff;
    font-size: 1rem;
}

.schedule-table th {
    padding: 18px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.5px;
}

.schedule-table td {
    padding: 18px;
    text-align: center;
    vertical-align: middle;
    font-size: 0.95rem;
    color: #333;
    transition: all 0.3s ease;
}

.schedule-section {
    background: #f9fafb;
    padding: 60px 20px;
    font-family: 'Poppins', sans-serif;
}

.schedule-section h2 {
    font-weight: 700;
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.schedule-section p {
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 2rem;
}

/* Modern Table Style */
.schedule-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.schedule-table thead {
    background: linear-gradient(90deg, #87e5da, #55c8b8);
    color: #fff;
    font-size: 1rem;
}

.schedule-table th {
    padding: 18px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.5px;
}

.schedule-table td {
    padding: 18px;
    text-align: center;
    vertical-align: middle;
    font-size: 0.95rem;
    color: #333;
    transition: all 0.3s ease;
}

/* Row striping with subtle gradient */
.schedule-table tbody tr:nth-child(even) {
    background: #f4f8ff;
}

.schedule-table tbody tr:hover {
    background: #e0f7f5;
    transform: scale(1.02);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

/* Price & Discount */
.price-text {
    font-weight: 700;
    color: #87e5da;
}

.discount-text {
    font-weight: 700;
    color: #28a745;
    background: rgba(40, 167, 69, 0.1);
    padding: 6px 12px;
    border-radius: 8px;
    display: inline-block;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .schedule-table thead {
        display: none;
    }
    .schedule-table, 
    .schedule-table tbody, 
    .schedule-table tr, 
    .schedule-table td {
        display: block;
        width: 100%;
    }
    .schedule-table tr {
        margin-bottom: 1rem;
        background: #fff;
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        border-radius: 12px;
        padding: 10px 0;
    }
    .schedule-table td {
        text-align: right;
        padding: 12px 20px;
        position: relative;
    }
    .schedule-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 20px;
        font-weight: 600;
        color: #6c757d;
        text-align: left;
    }
}
.calendar-container {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-weight: 600;
}

.calendar-header button {
    border: none;
    background: #f0f0f0;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    transition: 0.2s;
}

.calendar-header button:hover {
    background: #87e5da;
    color: #fff;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.calendar-day {
    padding: 12px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.2s;
}

.calendar-day:hover {
    background: #87e5da;
    color: #fff;
}

.calendar-day.selected {
    background: #28a745;
    color: #fff;
}
.card-shadow {
  border-radius: 12px;
  background-color: #fff;
  transition: all 0.3s ease;
}
.card-shadow:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

/* Left Info Card */
.info-card-logo {
  max-width: 150px;
}
.info-card-title {
  color: #333;
}
.info-card-selected p {
  margin-bottom: 0.5rem;
}

/* Right Appointment Card */
.appointment-card-title {
  color: #333;
}
.appointment-input {
  border-radius: 8px;
}

/* Custom Submit Button */
.btn-custom {
  border-radius: 8px;
  font-weight: 500;
  background-color: #87e5da;
  color: #fff;
  border: none;
  transition: 0.3s;
}
.btn-custom:hover {
  background-color: #5fd1c7;
}
 .yin-yoga-section {
    background: #f9fafb;
  }

  /* Image Wrapper & Full Height Image */
  .yin-yoga-section .yy-image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    display: flex;
  }

  .yin-yoga-section .yy-img-full {
    width: 100%;
    height: 100%;
    object-fit: cover; /* crop nicely */
    transition: transform 0.4s ease;
  }

  .yin-yoga-section .yy-img-full:hover {
    transform: scale(1.05);
  }

  /* Typography */
  .yin-yoga-section .yy-heading {
    font-family: 'Merriweather', serif;
  }

  .yin-yoga-section .yy-text p {
    text-align: justify;
    color: #444;
    margin-bottom: 1rem;
  }

  .yin-yoga-section .yy-link {
    text-decoration: none;
    font-weight: 600;
    color: #0077cc;
  }

  .yin-yoga-section .yy-link:hover {
    text-decoration: underline;
    color: #005fa3;
  }
   .yin-learning-section {
    background: linear-gradient(135deg, #f9fafc, #eef3f8);
  }

  .yin-learning-section .yl-heading {
    font-family: 'Merriweather', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #1a1a1a;
  }

  .yin-learning-section .yl-subtitle {
    max-width: 750px;
    margin: 0 auto;
    color: #555;
    font-size: 1.1rem;
  }

  .yin-learning-section .yl-card {
    background: #fff;
    border-radius: 14px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .yin-learning-section .yl-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
  }

  .yin-learning-section .yl-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #87e5da, #87e5da);
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(0, 119, 204, 0.3);
  }

  .yin-learning-section .yl-card-title {
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.25rem;
    color: #0077cc;
  }

  .yin-learning-section .yl-card-text {
    color: #444;
    font-size: 1rem;
  }

  .yin-learning-section .yl-list {
    padding-left: 1.2rem;
    margin: 0;
  }

  .yin-learning-section .yl-list li {
    margin-bottom: 0.6rem;
    color: #333;
    font-size: 0.95rem;
  }
  .yin-training-section {
    background: #ffffff;
  }

  .yin-training-section .yt-heading {
    font-family: 'Merriweather', serif;
    font-size: 2rem;
    color: #222;
  }

  .yin-training-section .yt-text {
    flex: 1;
  }

  .yin-training-section .yt-list {
    padding-left: 0;
    margin: 0;
    list-style: none;
  }

  .yin-training-section .yt-list li {
    margin-bottom: 0.9rem;
    color: #444;
    font-size: 1rem;
    text-align: justify;
    line-height: 1.6;
    position: relative;
    padding-left: 28px;
  }

  /* Modern custom bullet */
  .yin-training-section .yt-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #0077cc;
    font-weight: bold;
    font-size: 1.1rem;
    line-height: 1.6;
  }

  .yin-training-section .yt-image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    display: flex;
  }

  .yin-training-section .yt-img-full {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }

  .yin-training-section .yt-img-full:hover {
    transform: scale(1.05);
  }
   .included-section {
    background: #f9fafb;
  }

  .included-section .inc-heading {
    font-family: 'Merriweather', serif;
    font-size: 1.8rem;
    color: #222;
  }

  .included-section .inc-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
  }

  .included-section .inc-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 0.8rem;
    color: #444;
    line-height: 1.6;
  }

  .included-section .inc-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #0077cc;
    font-weight: bold;
    font-size: 1.1rem;
  }

  .included-section .inc-image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    display: flex;
  }

  .included-section .inc-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.4s ease;
  }

  .included-section .inc-img:hover {
    transform: scale(1.05);
  }
  .schedule-section {
    background: #f9fafb;
  }

  .schedule-heading {
    font-family: 'Merriweather', serif;
    font-size: 2rem;
    color: #222;
  }

  .schedule-table {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  }

  .schedule-table thead {
    background: #0077cc;
    color: #fff;
    text-transform: uppercase;
    font-size: 0.9rem;
  }

  .schedule-table th, 
  .schedule-table td {
    padding: 1rem;
    vertical-align: middle;
  }

  .schedule-table tbody tr:nth-child(even) {
    background: #f3f6f9;
  }

  /* Mobile-friendly stacking */
  @media (max-width: 768px) {
    .schedule-table thead {
      display: none;
    }

    .schedule-table tr {
      display: block;
      margin-bottom: 1.5rem;
      border: 1px solid #eee;
      border-radius: 8px;
      background: #fff;
      padding: 0.75rem;
    }

    .schedule-table td {
      display: block;
      text-align: left;
      padding: 0.5rem 0;
      font-size: 0.95rem;
    }

    .schedule-table td:first-child {
      font-weight: bold;
      color: #0077cc;
    }
  }
  .package-card {
  background: #fff;
  border-radius: 15px;
  padding: 25px 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease-in-out;
}
.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}
.package-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}
.package-price {
  font-size: 1.3rem;
  font-weight: bold;
  color: #00796b;
  margin-bottom: 20px;
}
.package-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.package-list li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #555;
}
.btn-apply {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 25px;
  background: #87e5da;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}
.btn-apply:hover {
  background: #5fd0c0;
  color: #fff;
}