/* theme-golf  */

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}


/* ── Minimal UA reset (theme has @tailwind base disabled) ──
   Zero the browser default block-element margins so headings/paragraphs/
   lists rely on the theme's Tailwind spacing utilities, matching the older
   themes that get this from Tailwind preflight. */
h1, h2, h3, h4, h5, h6,
p, figure, blockquote, dl, dd,
hr, pre {
  margin: 0;
}
ul, ol {
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --golf-fairway: #153e33;
  --golf-parchment: #F5EBDF;
  --golf-sand: #e9dfcf;
  --golf-gold: #c7a46e;

  /* Brand tokens consumed by the shared form / overview / CRM styles below.
     Mapped to golf colors (the shared block was ported from theme-allure,
     whose brand palette these names originally described). */
  --blush: #0f3b30;        /* primary accent → pine */
  --blush-hover: #16483a;  /* primary accent hover */
  --rose: #10382d;         /* secondary accent → pinemid */
  --ink: #153e33;          /* text → fairway */
  --muted: #4a5d52;        /* muted text */
  --line: #c9a66e;         /* hairlines/borders → goldline */
  --shadow-peach: 0 12px 30px rgba(11, 46, 39, 0.2);
  --tw-gradient-to-position:'';

}

/* ── Base reset ── */
* {
  box-sizing: border-box;
  letter-spacing: 0;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--golf-fairway);
  background: var(--golf-parchment);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

/* ── Serif utility (kept for parity with other themes) ── */
.serif {
  font-family: "Cormorant Garamond", Georgia, serif;
}

/* Page panel. */
.golf-page {
  display: block;
  width: 100%;
  margin-inline: auto;
  min-height: 100vh;
  background: var(--golf-parchment);
}
.golf-page section_boundary {
  max-width: 906px;
  margin-inline: auto;
}
.golf-page .hero-map {
  right: calc((906px - 100vw) / 2);
  /* Blend the aerial sketch into the parchment: fade out toward the left
     and softly at the top/bottom edges instead of a hard rectangle. */
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, #000 32%),
    linear-gradient(to bottom, transparent 0%, #000 12%, #000 88%, transparent 100%);
  mask-image:
    linear-gradient(to right, transparent 0%, #000 32%),
    linear-gradient(to bottom, transparent 0%, #000 12%, #000 88%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

/* Tablet (≈700–906px): the 870px-wide map is wider than the viewport, so
   anchor it to the right edge and cap its width so it stays a right-side
   accent instead of spilling left over the headline. */
@media (max-width: 906px) {
  .golf-page .hero-map {
    right: 0;
    width: 58vw;
    min-width: 360px;
  }
}

/* Phone (≤700px): the map becomes a faint full-width backdrop, matching the
   theme's existing max-[700px] utilities on the <img>. */
@media (max-width: 700px) {
  .golf-page .hero-map {
    width: 100%;
    min-width: 0;
  }
}

/* ══════════════════════════════════════════════════════════════════════
   Shared form / modal / CRM-overview styles
   Ported from theme-allure and recolored to the golf palette via the
   brand tokens defined in :root above (--blush/--rose/--ink/--line/etc.).
   ══════════════════════════════════════════════════════════════════════ */

/* ── Page Builder pointer-events management ── */
buttonform > div,
dialogform > div,
plainform > div,
wizardform > div,
form > div,
.buttonform-cmp-css > div {
  pointer-events: unset !important;
}

.grp-wrapper-class buttonform > div,
.gjs-editor-cont buttonform > div,
.grp-wrapper-class dialogform > div,
.gjs-editor-cont dialogform > div,
.grp-wrapper-class plainform > div,
.gjs-editor-cont plainform > div,
.grp-wrapper-class wizardform > div,
.gjs-editor-cont wizardform > div,
.grp-wrapper-class form > div,
.gjs-editor-cont form > div,
.grp-wrapper-class .widgets > *,
.gjs-editor-cont .widgets > *,
.grp-wrapper-class .buttonform-cmp-css > div,
.gjs-editor-cont .buttonform-cmp-css > div {
  pointer-events: none !important;
}

.grp-wrapper-class buttonform *,
.grp-wrapper-class dialogform *,
.grp-wrapper-class plainform *,
.grp-wrapper-class wizardform *,
.grp-wrapper-class form *,
.grp-wrapper-class .widgets *,
.grp-wrapper-class .buttonform-cmp-css * {
  outline: unset !important;
  outline-offset: unset !important;
}

/* ── Plain form base ── */
plainform form,
plainform .form_builds {
  float: left;
  width: 100%;
}

plainform form .formbuilder-button,
.modal .modal-body plainform form .formbuilder-button,
dialogform form .formbuilder-button {
  margin: 0 !important;
  padding: 15px;
}

/* Wizard nav buttons */
.main_form .wizard_form .prevArrowBtn,
.main_form .wizard_form .nextArrowBtn {
	color: var(--blush) !important;
}

.main_form .prevBtn,
.main_form .nextBtn {
	padding: 5px 15px;
	background-color: var(--blush) !important;
	color: #fff;
	display: inline-block;
	text-align: center;
	border-radius: 50px;
	font-size: 15px;
	border: 1px solid var(--blush) !important;
}

.main_form .prevBtn:hover,
.main_form .nextBtn:hover {
	background-color: #fff !important;
	color: var(--blush);
	border: 1px solid var(--blush) !important;
}

/* Size modifiers */
.btn-lg {
	font-size: 18px;
	padding: 10px 20px !important;
}

.btn-md {
	font-size: 14px;
	padding: 7px 16px !important;
}

.btn-sm {
	font-size: 12px;
	padding: 4px 10px !important;
}

/* White button variant */
.white_button buttonform button.btn-secondary {
	background-color: white !important;
	color: black !important;
	border: 1px solid #585858 !important;
}

.white_button buttonform button.btn-secondary:hover {
	background-color: white !important;
	color: black !important;
	border: 1px solid #585858 !important;
}

/* ========== FORMS ========== */

form .formbuilder-required {
	color: red;
	margin-left: 2px;
}

form .tooltip-element {
	visibility: visible;
	color: #fff;
	background: #000;
	width: 16px;
	height: 16px;
	border-radius: 8px;
	display: inline-block;
	text-align: center;
	line-height: 16px;
	margin: 0 5px;
	font-size: 12px;
	cursor: default;
}

form .form-group {
	margin-top: 10px;
}

form label,
form .form-group label {
	margin-bottom: 3px;
	width: 100%;
	float: left;
	text-align: left;
}

form .form-group .radio-group .formbuilder-radio,
form .form-group .checkbox-group .formbuilder-checkbox {
	display: flex;
	gap: 5px;
	align-items: baseline;
}

form .form-group .radio-group label {
	margin-left: 2px;
}

form .form-group .checkbox-group label {
	margin-left: 2px;
}

form .rendered-form .form-group,
form .rendered-form .formbuilder-checkbox,
form .rendered-form .formbuilder-radio {
	float: left;
	margin: 0;
	width: 100%;
}

form .rendered-form .form-group button {
	margin: 10px;
}

form .form-control:focus {
	border-color: #86b7fe;
	outline: 0;
	box-shadow: none;
}

form p {
	width: 100%;
	float: left;
}

form h1,
form h2,
form h3,
form h4,
form h5,
form h6 {
	width: 100%;
	float: left;
}

form .formbuilder-button {
	width: 100%;
	margin: 15px !important;
}

form #layoutPreview {
	width: 100%;
	float: left;
}

form .rendered-form h1,
form .rendered-form h2,
form .rendered-form h3,
form .rendered-form h4,
form .rendered-form h5,
form .rendered-form h6,
form .rendered-form p {
	float: left;
	width: 100%;
	padding: 1rem 0;
	margin-bottom: 0 !important;
	background: transparent !important;
	cursor: default;
	text-align: left;
}

form .ele.img-cont {
	padding: 1rem;
}

form .ele.img-cont img {
	max-height: 100%;
}

form .tox .tox-toolbar__group button {
	margin: 2px 0 3px 0;
}

form .rendered-form input[type="file"] {
	padding: 0px !important;
	height: 35px;
}

form .rendered-form input[type="file"]::file-selector-button {
	font-size: 14px;
	border-right: 1px solid #ddd;
	border: 0;
	padding: 6px 11px;
	background: #e9ecef;
}

form .rendered-form input[type="date"] {
	cursor: pointer;
}

form .rendered-form h1 { font-size: 26px; }
form .rendered-form h2 { font-size: 24px; }
form .rendered-form h3 { font-size: 22px; }
form .rendered-form h4 { font-size: 20px; }
form .rendered-form h5 { font-size: 18px; }
form .rendered-form h6 { font-size: 16px; }

form .form-group .form-control::placeholder {
	color: #cbcbcb;
}

form .rendered-form input[type="file"],
form .rendered-form select {
	height: auto;
}

form .form-control {
	border: 1px solid #ddd;
	appearance: none;
	background-color: #fff;
	border-radius: 0px;
	padding: 0.5rem 0.75rem;
	font-size: 1rem;
	line-height: 1.5rem;
	width: 100%;
}

form .form-control:focus {
	outline: none;
	border-color: #86b7fe;
}

form textarea[style*="background-color: rgb(240, 248, 255);"],
form input[style*="background-color: rgb(240, 248, 255);"] {
	color: black !important;
}

/* Select element */
select {
	-webkit-appearance: none !important;
	appearance: none !important;
	background: white url(https://dutbmp3xi6xk2.cloudfront.net/themebuilder/theme-edurock_light/img/arrow-down-black.svg) !important;
	background-position-x: 98% !important;
	background-position-y: 17px !important;
	background-repeat: no-repeat !important;
	background-size: 20px 7px !important;
	color: black !important;
	padding-right: 30px !important;
}

/* Main form / wizard form */
.main_form {
	width: 100%;
	height: auto !important;
	float: left;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

wizardform .main_form {
	height: auto;
}

.main_form .wizard_form {
	max-width: 1200px;
	width: 100%;
	margin: 20px 10px;
	float: left;
	position: relative;
	box-shadow: 0px 3px 12px rgb(170 170 170 / 42%);
	background: transparent;
	padding: 20px;
	border-radius: 15px;
	display: flex;
	justify-content: center;
	height: auto;
}

.modal .main_form .wizard_form {
	margin: 0;
	box-shadow: unset;
	padding: 0;
}

.main_form .wizard_form .form-cont {
	position: relative;
}

.main_form .wizard_form .progress-header .progress-bar {
	background-color: var(--blush);
}

.main_form .wizard_form button.prevBtn.avoid-clicks {
	opacity: 0.2;
  pointer-events: none;
}

.main_form .wizard_form button.prevBtn {
	background-color: transparent !important;
	color: black;
	cursor: pointer;
	border-radius: 8px !important;
	padding: 8px 16px !important;
}

.main_form .wizard_form button.nextBtn {
	border-radius: 8px !important;
	padding: 8px 16px !important;
}

.main_form .wizard_form .form-cont #layoutPreview {
	width: 75%;
	float: unset;
	margin: 0 auto;
}

.main_form .wizard_form .prevArrowBtn {
	position: absolute;
	top: 45%;
	left: 7%;
	font-size: 50px;
	color: var(--blush);
	cursor: pointer;
}

.main_form .wizard_form .nextArrowBtn {
	position: absolute;
	top: 45%;
	right: 7%;
	font-size: 50px;
	color: var(--blush);
	cursor: pointer;
}

.main_form .wizard_form .layoutContnt2 .prevArrowBtn,
.main_form .wizard_form .layoutContnt3 .prevArrowBtn,
.main_form .wizard_form .layoutContnt4 .prevArrowBtn,
.main_form .wizard_form .layoutContnt5 .prevArrowBtn,
.main_form .wizard_form .layoutContnt6 .prevArrowBtn {
	left: -20px;
}

.main_form .wizard_form .layoutContnt2 .nextArrowBtn,
.main_form .wizard_form .layoutContnt3 .nextArrowBtn,
.main_form .wizard_form .layoutContnt4 .nextArrowBtn,
.main_form .wizard_form .layoutContnt5 .nextArrowBtn,
.main_form .wizard_form .layoutContnt6 .nextArrowBtn {
	right: -20px;
}

.main_form .rendered-form {
	display: none;
}

.main_form .rendered-form.active {
	display: block;
}

/* Validation */
input.invalid {
	background-color: #ffdddd;
}

.wizard_data .rendered-form {
	display: none;
}

.rendered-form *[tooltip]:hover:after {
	width: max-content !important;
	padding: 10px 15px !important;
}

.rendered-form p {
	padding-left: 0 !important;
	padding-right: 0 !important;
}

.wizard_form form.layout_sec {
  width: 100%;
  max-width: 100%;
  flex-wrap: wrap;
}

.wizard_form p,
.wizard_form h1,
.wizard_form h2,
.wizard_form h3,
.wizard_form h4,
.wizard_form h5,
.wizard_form h6 {
  padding: 0 !important;
}

.wizard_form form label {
  color: #111 !important;
  width: 100%;
  float: left;
  text-align: left;
}

.main_form .theme-input{
  border-style: solid;
  border-width: 1px;
  background-color: white;
}

/* Tailwind preflight is disabled in this theme, so inputs default to
   content-box and the h-[40px] + py-2 + border stack up too tall. Force
   border-box on form fields so their set heights are honoured. */
.main_form .theme-input,
.modal .theme-input,
dialogform input,
dialogform select,
dialogform textarea,
form .form-control {
  box-sizing: border-box;
}

#cookie-save-preferences{
  padding: 10px 16px;
}

@media (min-width: 1200px) {

	.display-5,
	.display-4 {
		font-size: 2.5rem !important;
	}

	.layout_sec {
		max-width: 1200px;
		float: unset !important;
		margin: 0 auto !important;
	}
}


/* Google Places autocomplete */
.pac-container {
  z-index: 100000 !important;
}

.pac-logo::after {
  height: 0px !important;
  background-image: none !important;
}

/* Webinar */
.grp-wrapper-class buttonform > div,
.gjs-editor-cont buttonform > div,
.grp-wrapper-class dialogform > div,
.gjs-editor-cont dialogform > div,
.grp-wrapper-class plainform > div,
.gjs-editor-cont plainform > div,
.grp-wrapper-class wizardform > div,
.gjs-editor-cont wizardform > div,
.grp-wrapper-class form > div,
.gjs-editor-cont form > div,
.grp-wrapper-class .widgets > *,
.gjs-editor-cont .widgets > *,
.grp-wrapper-class .webinar-cmp-css > div,
.gjs-editor-cont .webinar-cmp-css > div,
.grp-wrapper-class .buttonform-cmp-css > div,
.gjs-editor-cont .buttonform-cmp-css > div {
  pointer-events: none !important;
}

.webinar-cmp-css > div {
  pointer-events: unset !important;
}

/* Input validation states */
input.invalid {
  background-color: #ffdddd;
}

select.invalid,
input.invalid,
textarea.invalid,
select.empty-invalid,
input.empty-invalid,
textarea.empty-invalid {
  border: 2px solid red !important;
}

input.valid,
textarea.valid {
  border: 2px solid green !important;
}

/* ── Overview / Details / Forms — CRM integration styles ── */
:root {
  --ov-primary: var(--blush, #0f3b30);
  --ov-primary-dark: var(--rose, #10382d);
  --ov-primary-soft: #f2e9da;
  --ov-ink: var(--ink, #153e33);
  --ov-muted: var(--muted, #4a5d52);
  --ov-line: var(--line, #c9a66e);
}

.enigma_theme.content_sec { width: 100%; float: left; }
.coursearea,
.blogarea__2 { width: 100%; float: left; }
.coursearea.sp_top_100,
.blogarea__2.sp_top_100 { padding-top: 100px; }
.coursearea.sp_bottom_100,
.blogarea__2.sp_bottom_100 { padding-bottom: 100px; }
.containerCard { width: 100%; }
.tab-content.tab__content__wrapper { padding: 0; }

/* Blog overview */
.article_overview .blogCardMain {
  margin: 8px;
  background: rgba(255, 253, 249, 0.85);
  border: 1px solid rgba(234, 216, 210, 0.7);
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(121, 78, 69, 0.07);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.article_overview .blogCardMain:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(121, 78, 69, 0.14);
}

/* Blog overview — horizontal card layout at desktop */
@media (min-width: 768px) {
  .article_overview .blogCardMain > div {
    display: flex !important;
    flex-direction: row !important;
  }
  .article_overview .blogCardMain > div > div:first-child {
    width: 33.333333% !important;
    max-width: 280px !important;
    flex-shrink: 0 !important;
  }
  .article_overview .blogCardMain > div > div:last-child {
    flex: 1 !important;
    min-width: 0 !important;
  }
}
.article_overview .blogCardMain .blog_title { color: var(--ov-ink); transition: color .2s ease; }
.article_overview .blogCardMain .blog_title:hover { color: var(--golf-gold); }
.article_overview .blogCardMain .blog_tags {
  background-color: var(--golf-gold);
  border: 1px solid var(--golf-gold);
  color: #fff !important;
  max-width: 350px !important;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.article_overview .blogCardMain .blog_tags a { color: #fff !important; }
.article_overview .blogCardMain .blog_tags:hover { background-color: var(--ov-primary-dark); }
.article_overview .blogCardMain .blog_desc {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article_overview .blogCardMain .view_more_btn { color: var(--ov-muted); transition: color .2s ease, fill .2s ease; }
.article_overview .blogCardMain .view_more_btn:hover { color: var(--golf-gold); fill: var(--golf-gold); }
.article_overview .blogCardMain .blog_date { color: var(--ov-muted); }

/* Blog compact grid — responsive 3→2→1 column layout */
.blog-compact-grid > article {
  flex: 0 0 calc(33.333% - 22px);
  max-width: calc(33.333% - 22px);
}
@media (max-width: 900px) {
  .blog-compact-grid > article {
    flex: 0 0 calc(50% - 16px);
    max-width: calc(50% - 16px);
  }
}
@media (max-width: 600px) {
  .blog-compact-grid > article {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Blog details */
.blog__details__img,
.blogarae__img__2 { max-height: 600px; overflow: hidden; border-radius: 12px; }
.blog__details__img img,
.blogarae__img__2 img { max-width: 100%; width: auto !important; }
.blog__details__content__wraper { width: 100%; }
.blog__details__content__wraper .blog__details__content .blog__details__heading h5 {
  font-weight: 700;
  font-size: 26px;
  line-height: 30px;
  margin-bottom: 10px;
  text-transform: capitalize;
  color: var(--ov-ink);
}
.blog__details__content__wraper .blog__details__content p {
  font-weight: 400;
  line-height: 1.7;
  color: var(--ov-muted);
  margin-bottom: 1rem;
}
.blog_content h1, .blog_content h2, .blog_content h3,
.blog_content h4, .blog_content h5, .blog_content h6 {
  color: var(--ov-ink);
  font-weight: 700;
  margin: 1.25rem 0 .5rem;
}
.blog_content p { color: var(--ov-muted); line-height: 1.7; margin-bottom: 1rem; }
.blog_content ul, .blog_content ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.blog_content li { color: var(--ov-muted); line-height: 1.7; margin-bottom: .35rem; }
.blog_content img { max-width: 100%; border-radius: 8px; }
.blog_content a { color: var(--ov-primary); text-decoration: underline; }

/* Plans */
.planCardMain { width: 100%; }
.payment_plan_card {
  background: #fff;
  border: 1px solid var(--ov-line);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .06);
  padding: 24px;
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
}
.payment_plan_card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0, 0, 0, .1); }
.payment_plan_card.active {
  border-color: var(--ov-primary);
  box-shadow: 0 8px 30px rgba(233, 143, 133, 0.2);
}
.featured_card {
  border: 2px solid var(--ov-primary) !important;
  transform: scale(1.02);
  box-shadow: 0 8px 30px rgba(233, 143, 133, 0.25) !important;
}
.badge-popular {
  position: absolute;
  top: -10px;
  right: -10px;
  background: linear-gradient(135deg, var(--ov-primary) 0%, var(--ov-primary-dark) 100%);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(233, 143, 133, 0.4);
}
.plan_btn {
  background: var(--ov-primary);
  color: #fff;
  border: 1px solid var(--ov-primary);
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  width: 100%;
  transition: all .2s ease;
}
.plan_btn:hover { background: var(--ov-primary-dark); border-color: var(--ov-primary-dark); }
#payment_plan { margin-top: 80px; }
#payment_plan .planCardMain { width: 100% !important; }
#payment_plan .payment_plan_card { max-width: 320px; }
#payment_plan hr.plan-card-divider { display: block !important; height: 1px !important; background: rgba(234, 216, 210, 0.85) !important; border: none !important; margin: 8px 0; }
.plan-card-price p { margin: 0 !important; line-height: 1.2; }
#payment_plan .plan-card-header { min-height: unset; }
#payment_plan .plan-card-price { min-height: unset; }
#payment_plan .plan-card-header > div:first-child { margin-bottom: 8px !important; }
#payment_plan .plan-card-header p { margin-top: 4px !important; }

/* ── Theme primary utility & standard button ── */
.theme-text-primary {
  color: var(--blush);
}

.theme-primary {
  background: var(--blush);
  color: white !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .16s ease, background .16s ease, box-shadow .16s ease;
  border: none;
}

.btn-primary {
  background: var(--blush);
  color: #fff;
  box-shadow: var(--shadow-peach);
}

.btn-primary:hover {
  background: var(--blush-hover);
  transform: translateY(-1px);
}

.text-primary-theme {
  color: var(--blush);
}

/* Webinar */
.webinar-cmp-css > div { pointer-events: unset !important; }
.coursearea.webinars_overview .webinar_card_wrap {
  background: #fff;
  border: 1px solid var(--ov-line);
  border-radius: 10px;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.coursearea.webinars_overview .webinar_card_wrap:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
}

/* Forms */
.form_card {
  background: #fff;
  border: 1px solid var(--ov-line);
  border-radius: 10px;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
  cursor: pointer;
}
.form_card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
  border-color: var(--ov-primary);
}
.form_thumbnail {
  width: 100%;
  height: 200px;
  background-color: var(--ov-primary-soft);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.form_title {
  padding: 12px 16px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ov-ink);
}
.enigma_theme form.layout_sec { width: 100%; }
.enigma_theme .wizard_form form.layout_sec { width: 100%; max-width: 100%; flex-wrap: wrap; }
.rendered-form .timepicker-option:has(input[type="radio"]:checked) {
  background-color: var(--ov-primary) !important;
  color: #fff !important;
  border-color: var(--ov-primary) !important;
}
.rendered-form .timepicker-option:has(input[type="radio"]:checked) label { color: #fff !important; }
.contact__form__inner { width: 100%; }

/* Jobs */
.job_listing { width: 100%; }
.job_detail_page { width: 100%; }
.bread_crumb {
  width: 100%;
  display: flex;
  overflow: hidden;
  margin-bottom: 24px;
}
.bread_crumb a { color: var(--ov-muted); transition: color .2s ease; }
.bread_crumb a:hover { color: var(--ov-primary); }
.gradient-overlay {
  background: linear-gradient(135deg, var(--ov-primary-soft) 0%, #ffffff 100%);
}

/* Directory overviews */
.coursearea.providers_overview,
.coursearea.brands_overview,
.coursearea.creators_overview,
.coursearea.webinars_overview { width: 100%; }

/* Misc */
.theme__shadow__circle { display: none; }
.tab-content.tab__content__wrapper.with__sidebar__content { padding: 0; }

/* ── Progress Section ── */
.progress-stat-img {
  height: 145px;
  min-width: 180px;
  flex: 0 0 180px;
  display: block;
  object-fit: contain;
  object-position: top center;
  align-self: flex-start;
  box-shadow: none !important;
  mix-blend-mode: multiply;
}

@media (max-width: 1023px) {
  .progress-stat-img {
    flex: 1 1 calc(50% - 10px);
    min-width: 0;
    max-width: 180px;
    height: 130px;
    object-fit: contain;
    align-self: auto;
  }
}

@media (max-width: 480px) {
  .progress-stat-img {
    flex: 1 1 calc(50% - 10px);
    min-width: 0;
    max-width: calc(50% - 10px);
    height: 110px;
    object-fit: contain;
  }
}

.progress-checklist-col ul {
  list-style: none;
}

.progress-checklist-card {
  width: 100%;
  max-width: 380px;
  border-radius: 18px;
  padding: 22px 20px;
  background: transparent;
  box-shadow: 0 0 8px rgba(232, 194, 190, 0.45);
  flex-shrink: 0;
  height: auto;
  display: flex;
  align-items: center;
}

.progress-flower-img {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  height: auto;
  opacity: 0.4;
  pointer-events: none;
  mix-blend-mode: multiply;
}

/* Responsive */
@media (max-width: 1023px) {
  .progress-flower-img {
    display: none;
  }
}
@media (max-width: 540px) {
  .progress-checklist-col {
    width: 100%;
  }
}

@media (max-width: 1068px) {
  .progress-checklist-col {
    width: 100%;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .course__details__heading h3 { font-size: 26px; line-height: 1.3; }
  .webinar_detail { padding: 60px 0; }
  .coursearea.sp_top_100,
  .blogarea__2.sp_top_100 { padding-top: 60px; }
  .coursearea.sp_bottom_100,
  .blogarea__2.sp_bottom_100 { padding-bottom: 60px; }

  .page-shell {
    width: min(100% - 28px, 560px);
  }
  .progress-label { width: 100%; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE IMPROVEMENTS — mobile / tablet fixes
   ═══════════════════════════════════════════════ */

/* ── Section headings: centre-align on mobile/tablet ── */
@media (max-width: 1023px) {
  /* App feature icons: centre on mobile */
  .app-feature-icon { margin-inline: auto; }
  /* CTA checklist card: centre on mobile */
  .cta-card-col { justify-content: center; }
  .cta-checklist-card { margin-inline: auto; }
}

/* 1. Hero: lower font-size floor on very narrow screens */
@media (max-width: 400px) {
  .hero-title { font-size: clamp(2rem, 8vw, 2.55rem); }
}

/* 3. Lifestyle: softer portrait ratio on mobile */
@media (max-width: 767px) {
  .photo-card { aspect-ratio: 3 / 4; max-height: 220px; }
}

/* 4. Training flower: hide on mobile/tablet (absolute -75px overflow) */
@media (max-width: 1023px) {
  .training-flower-img { display: none; }
}

/* 5. Community: compact cards on tablet */
@media (max-width: 1060px) {
  .community-avatar { width: 72px; height: 72px; }
  .community-card { padding: 14px 12px 12px; }
}

/* 5. Community: compact cards on mobile */
@media (max-width: 767px) {
  .community-avatar { width: 64px; height: 64px; }
  .community-card { padding: 14px 12px 12px; }
  .community-quote { font-size: 0.82rem; }
}

/* Community section: center left column when stacked on mobile/tablet */
@media (max-width: 1023px) {
  .community-section .drop-zone > div:first-child {
    text-align: center;
  }
}

/* Community cards: stack avatar above quote at narrow card widths */
@media (max-width: 1250px) {
  .community-card-inner {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .community-avatar-col {
    align-items: center;
  }
  .community-quote {
    text-align: center;
    font-size: 0.82rem;
  }
}

/* 6. App phones: remove desktop bleed margin on mobile/tablet */
@media (max-width: 1023px) {
  .app-phones-img { margin-bottom: 0; }
}

/* 7. Progress checklist: auto height and centered on mobile/tablet */
@media (max-width: 1023px) {
  .progress-checklist-card { height: auto; min-height: 0; margin-inline: auto; }
  .progress-checklist-col { display: flex; justify-content: center; }
}

/* 9. CTA ornament: hide on tablet and mobile */
@media (max-width: 1023px) {
  .cta-section.ornament::after { display: none; }
}

/* ===== Directory Overview pages (providers / brands / webinars / services) ===== */

/** Providers / Creators base card */
.provider-card,
.creator-card {
  background: rgba(255, 253, 249, 0.85);
  border: 1px solid rgba(234, 216, 210, 0.7);
  border-radius: 14px;
  padding: 20px 22px;
  box-shadow: 0 6px 20px rgba(121, 78, 69, 0.07);
  transition: transform .15s ease, box-shadow .15s ease;
}
.provider-card:hover,
.creator-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(121, 78, 69, 0.14);
}

/** Creators Overview — missing Tailwind arbitrary-value utilities */
.creators_overview .grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}
.creators_overview .creator-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.creators_overview .creator-card > div:first-child {
  display: flex;
  align-items: center;
  gap: 14px;
}
.creators_overview .creator-card > div:first-child > div:first-child {
  width: 52px;
  min-width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #0f3b30, #c4726a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.2rem;
}
.creators_overview .creator-card > div:first-child > img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.creators_overview .creator_name { color: var(--ink, #153e33); }
.creators_overview .creator-no-leads {
    color: rgba(0,0,0,0.6) !important;
}
.creators_overview .creator-leads-badge {
    border-color: rgba(48, 209, 88, 0.5) !important;
    background-color: rgba(48, 209, 88, 0.15) !important;
}

/** Providers Overview */
.providers_overview .provider-card .avatar-initial { background: #0f3b30; }
.providers_overview .provider-card .btn-view-profile {
    color: #0f3b30 !important;
    border-color: #0f3b30 !important;
    background-color: transparent !important;
}
.providers_overview .provider-card .btn-view-profile:hover {
    color: #fff !important;
    border-color: #16483a !important;
    background-color: #0f3b30 !important;
}

/** Brand card base */
.brand_card {
  background: #ffffff;
  border: 1px solid rgba(234, 216, 210, 0.85);
  border-radius: 14px;
  padding: 20px 22px;
  box-shadow: 0 4px 20px rgba(121, 78, 69, 0.12);
  overflow: hidden;
  transition: transform .15s ease, box-shadow .15s ease;
}
.brand_card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(121, 78, 69, 0.18);
}

/** Brands Overview */
.brands_overview .brand_card .brand_name { color: #000000; }
.brands_overview .brand_card .brand_name:hover { color: #0f3b30; }

/** Webinars Overview */
.webinars_overview .webinar_card .webinar_title{ color: #0f3b30; }

.webinars_overview .webinar_card .learn_more { color: #0f3b30; }
.webinars_overview .webinar_card .webinar_host_initial { background: #0f3b3026; color: #0f3b30; }

/** Service Overview */
.services_overview .service_card .service_name { color: #000000; }
.services_overview .service_card .service_name:hover { color: #0f3b30; }
.services_overview .service_card .learn_more { color: #000000; }
.services_overview .service_card .learn_more:hover { color: #0f3b30; }


/* ─── Job Listing ─── */
.job_listing { padding-top: 80px !important; }
.job_listing .sticky { position: static !important; }
.job_listing .bg-blue-600 { background-color: #0f3b30 !important; border-color: #0f3b30 !important; color: #ffffff !important; }
.job_listing .bg-blue-500 {
	--tw-bg-opacity: 1;
	background-color: #0f3b30 !important;
}
.job_listing .hover\:bg-gray-200:hover { background-color: rgba(234, 216, 210, 0.4) !important; }
.job_listing .absolute { position: absolute !important; }
.job_listing .hover_card > div:has(> span) { top: 16px !important; left: 16px !important; z-index: 10; }
.job_listing .bg-gray-800 { background-color: #2d7a4f !important; }
.job_listing .bg-white.shadow-sm { background: rgba(255, 253, 249, 0.98) !important; border-bottom: 1px solid rgba(234, 216, 210, 0.7) !important; box-shadow: 0 1px 6px rgba(121, 78, 69, 0.08) !important; }
.job_listing .rounded-2xl.shadow-md { box-shadow: 0 2px 12px rgba(121, 78, 69, 0.08) !important; }
.job_listing .hover\:shadow-2xl:hover { box-shadow: 0 8px 32px rgba(121, 78, 69, 0.16) !important; }

/* ─── Providers Overview — full grid + card layout ─── */
.providers_overview .providers-content { padding-top: 100px; padding-bottom: 40px; }
.providers_overview .providers-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; }
.providers_overview .provider-card {
  background: #ffffff;
  border: 1px solid rgba(234, 216, 210, 0.7);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(121, 78, 69, 0.08);
  display: flex; flex-direction: column; gap: 14px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.providers_overview .provider-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(121, 78, 69, 0.14); }
.providers_overview .card-avatar-row { display: flex; align-items: center; gap: 14px; }
.providers_overview .avatar-img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.providers_overview .avatar-initial {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, #0f3b30, #c4726a);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 1.2rem; flex-shrink: 0;
}
.providers_overview .provider_name { color: #153e33; margin-bottom: 3px; }
.providers_overview .provider-location { font-size: .82rem; color: #4a5d52; }
.providers_overview .card-meta { display: flex; align-items: center; gap: 8px; }
.providers_overview .rating-star { font-size: .9rem; font-weight: 700; }
.providers_overview .review-count, .providers_overview .jobs-completed { font-size: .78rem; color: #4a5d52; }
.providers_overview .card-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.providers_overview .badge-verified { font-size: .74rem; border: 1px solid rgba(48, 209, 88, 0.3); color: #1A7A3C; background: rgba(48, 209, 88, 0.1); padding: 3px 10px; border-radius: 6px; font-weight: 500; }
.providers_overview .badge-service { font-size: .74rem; border: 1px solid rgba(234, 216, 210, 0.6); color: #4a5d52; background: rgba(255, 253, 249, 0.8); padding: 3px 10px; border-radius: 6px; font-weight: 500; }
.providers_overview .btn-view-profile {
  margin-top: auto; display: block; text-align: center;
  background: rgba(233, 143, 133, 0.1); border: 1.5px solid rgba(233, 143, 133, 0.4);
  color: #c4726a; font-weight: 700; font-size: .88rem;
  padding: 10px; border-radius: 10px; text-decoration: none; transition: all 0.15s ease;
}
.providers_overview .btn-view-profile:hover { background: #0f3b30; border-color: #0f3b30; color: #fff; }

/* ─── Webinars Overview — header clearance + card frame ─── */
.webinars_overview section { padding-top: 120px; }
.webinars_overview .webinar_card { border: 1px solid rgba(234, 216, 210, 0.85); box-shadow: 0 2px 12px rgba(121, 78, 69, 0.06); }
.webinars_overview .webinar_card:hover { border-color: rgba(233, 143, 133, 0.4); box-shadow: 0 6px 24px rgba(121, 78, 69, 0.12); }
.webinars_overview .webinar_card > div:first-child { aspect-ratio: 16 / 9; }
.webinars_overview .webinar_card:hover > div:first-child img { transform: scale(1.02); transition: transform 0.3s; }
.webinars_overview .webinar_title { color: #153e33; }
.webinars_overview .learn_more { color: #0f3b30; }

/* ─── Course Overview — layout + tab icons ─── */
.course_overview.coursearea .container > div:first-child { padding-top: 100px; padding-bottom: 40px; }
.course_overview.coursearea .courseListCard { min-width: 22em; max-width: 24em; }
.course_overview.coursearea .gridAreaImg { min-height: 170px; }
.course_overview.coursearea .courseTitle { min-height: 56px; }
.course_overview.coursearea .profile_img, .course_overview.coursearea .gridAreaWraper .usrInitial { width: 30px !important; height: 30px !important; }
@media (min-width: 768px) {
  .course_overview.coursearea .courseCard > div > a:first-child { width: 16rem; flex-shrink: 0; }
  .course_overview.coursearea .courseCard > div > a:first-child img { width: 100%; height: auto; }
}
.course_overview.coursearea .course_title { font-size: 18px; }
.course_overview.coursearea .course_desc { font-size: 14px; }
.course_overview.coursearea .courseCard .usrInitial { width: 32px !important; height: 32px !important; border-radius: 25px !important; }
.course_overview.coursearea .course__text__wraper { display: flex; align-items: center; }
.course_overview.coursearea .property__team__tap { display: flex !important; flex-direction: row !important; gap: 4px; list-style: none; padding: 0; margin: 0; }
.course_overview.coursearea .courseView { color: #0f3b30; }

/* ─── Services Overview — header clearance + card shadow ─── */
.services_overview .container > .flex > div:first-child { padding-top: 80px; padding-bottom: 40px; }
.services_overview .service_card > div { box-shadow: 0 4px 20px rgba(121, 78, 69, 0.10); }
.services_overview h1, .services_overview .service_name { color: #153e33; }
.services_overview .learn_more { color: #0f3b30; }

/* ─── Cities Overview — city cards + spacing ─── */
#citiesGrid { gap: 1.5rem; }
.city-card { background: #ffffff; border: 1px solid rgba(234, 216, 210, 0.7); box-shadow: 0 2px 12px rgba(121, 78, 69, 0.08); }
.city-card:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(121, 78, 69, 0.14); border-color: rgba(233, 143, 133, 0.4); }
.view-city-btn { color: #0f3b30; }
#citiesCounter { color: #c4726a; }
.cities-dark-cta { padding-top: 72px; padding-bottom: 72px; background-color: #1C1C1E; }
#waitlistCard { background: #ffffff; box-shadow: 0 2px 12px rgba(121, 78, 69, 0.08); border: 1px solid rgba(234, 216, 210, 0.5); max-width: 560px; margin: 2rem auto 0; }
/* .content_sec > div:nth-child(2) { padding-top: 56px; padding-bottom: 56px; } */
/* ─── Feedback Cards — fix missing arbitrary Tailwind utilities ─── */
[widget-type="review"] figure {
  min-width: 280px;
  max-width: 350px;
  border-color: #c9a66e !important;
  box-shadow: 0 4px 20px rgba(121, 78, 69, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04) !important;
}
[widget-type="review"] blockquote { color: #153e33; }
[widget-type="review"] blockquote > div { min-height: 115px; color: #4a5d52; }
[widget-type="review"] blockquote > p::before { content: '\201C'; }
[widget-type="review"] blockquote > p::after { content: '\201D'; }
[widget-type="review"] figcaption { color: #4a5d52; }
[widget-type="review"] figcaption::before { content: '\2013\00A0'; }
[widget-type="review"] .fill-\[#ffd52c\] { fill: #ffd52c !important; }

/* ─── Course Gallery — fix duration overflow outside card ─── */
[widget-type="course"] .grid { width: 100%; }
[widget-type="course"] .grid > div { min-width: 0; }
[widget-type="course"] .p-4 > div:first-child { width: 100%; }

/* ─── Slider nav arrows ─── */
.carsousl-btn { opacity: 1 !important; }
.carousel-option-prev-icon,
.carousel-option-next-icon {
  color: var(--ink) !important;
  font-size: 32px !important;
}
.carousel-option-prev-icon { padding-left: 6px !important; }
/* ─── Payment Plans — white card, pill button, + feature items ─── */
#payment_plan .payment_plan_card {
  background: #ffffff !important;
  border: 1px solid #e5e7eb !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06) !important;
  color: #1f2937 !important;
}
#payment_plan .plan-card-header h3 {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.85rem !important;
  font-weight: 700;
  color: #1f2937 !important;
}
#payment_plan .plan_redirect {
  border-radius: 9999px !important;
  background: #1f2937 !important;
  color: #ffffff !important;
}
#payment_plan .plan_redirect:hover { background: #374151 !important; }
#payment_plan .card_features .feature-item { border-bottom: 1px solid #f3f4f6; padding: 8px 0; }
#payment_plan .card_features .feature-item i { display: none !important; }
#payment_plan .card_features .feature-item::before {
  content: '+';
  color: #9ca3af;
  font-size: 14px;
  flex-shrink: 0;
  width: 16px;
  text-align: center;
}
/* Form widget buttons — override Bootstrap specificity */
form .btn.btn-primary,
plainform .btn.btn-primary,
dialogform .btn.btn-primary,
buttonform .btn.btn-primary,
webinarform .btn.btn-primary {
  background-color: var(--blush) !important;
  color: #fff !important;
  border-color: var(--blush) !important;
}
form .btn.btn-primary:hover,
plainform .btn.btn-primary:hover,
dialogform .btn.btn-primary:hover,
buttonform .btn.btn-primary:hover,
webinarform .btn.btn-primary:hover {
  background-color: var(--blush-hover) !important;
  border-color: var(--blush-hover) !important;
  color: #fff !important;
}

/* Triple pricing — fix max-w-[22rem] arbitrary class not in compiled CSS */
[widget-type="training_plan"] > div { max-width: 22rem; }

/* ---------- Webinar detail — event timer (webinar_detail.html) ---------- */
.webinarStatus { justify-items: center; }
.webinarStatus.pt-100 { padding-top: 130px; }
.webinarStatus.pb-100 { padding-bottom: 130px; }
.webinarStatus .eventpackTime { max-width: 900px; }
.webinarStatus .eventpackTime h3 { font-size: 20px; line-height: 1.5; text-transform: capitalize; margin-bottom: 5px; font-weight: 600; color: var(--ov-ink); }
.webinarStatus .eventpackTime .webinar_icon { width: 68px; position: absolute; top: 42%; cursor: pointer; }
.webinarStatus .eventpackTime .webinar_source { position: absolute; top: 42%; }
.webinarStatus .eventpackTime .webinar_thumbnail { opacity: 0.5; }
.webinarStatus .eventTime {
  position: relative;
  background-color: var(--ov-primary);
  color: #fff;
  height: 108px;
  width: 100px;
  padding: 7px;
  font-size: 60px;
  font-weight: 700;
  border-radius: 6px;
}
.webinarStatus .eventComing { font-size: 20px; }
.webinarStatus .eventbfr::after {
  content: ':';
  position: absolute;
  left: -26px;
  font-size: 60px;
  color: var(--ov-ink);
  font-family: 'Inter', sans-serif;
}
.webinarStatus .d-grid { font-family: 'Inter', sans-serif; }
.webinarStatus .container { height: 800px; }
.webinarStatus video.webinar_url { height: calc(100% - 50px); }
.webinar_detail .btn.inline-block { display: inline-block !important; }
.webinar_detail .webinarStatus .eventTime { background-color: var(--ov-primary) !important; color: #fff !important; }
.webinar_detail .webinarStatus .eventbfr::after { left: -26px !important; }
.webinar_detail .modal { text-align: start; }
.webinar_detail .modal .shadow { height: auto; }
.webinar_detail .modal .modal-body label { float: left; }
.webinar_detail .modal .modal-body .form-control { border: 1px solid var(--ov-line); }
.webinar_detail .modal .modal-body .form-control:focus { border: 1px solid var(--ov-primary); box-shadow: unset; }
.webinar-cmp-css .webinar_sec { display: flex !important; align-items: center; justify-content: center; flex-wrap: wrap; }

.tracking-wider.from-green-500 {
  --tw-gradient-from: #22C45E !important;
}
