@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");

/* ── ProofPros design tokens ── */
:root {
  --ink: #071229;
  --proof: #0857ff;
  --proof2: #1d9bff;
  --soft: #eef5ff;
  --line: #d6e5ff;
  --muted: #5a6e8a;
  --blue-dark: #0040cc;
}

/* ── Theme primary utility & standard button ── */
.theme-primary {
  background: var(--proof);
}

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

.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(--proof);
  color: #fff;
}

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

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 4%, rgba(8, 87, 255, .08), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 45%, #ffffff 100%);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

/* ── Layout shell ── */
.site-shell {
  width: min(calc(100% - 96px), 1120px);
  margin-inline: auto;
}

/* ── Header ── */
.proofpros-header,
.site-header {
  position: relative;
  z-index: 30;
  height: 52px;
  border-bottom: 1px solid rgba(214, 229, 255, 0.8);
  background: rgba(255, 255, 255, 0.9);
}

.header-cta {
  display: inline-flex;
  min-width: 130px;
  min-height: 40px;
  padding: 0 18px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(180deg, #1a6fff 0%, #0857ff 100%);
  box-shadow: 0 4px 12px rgba(8, 87, 255, 0.18);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.brand-logo {
  display: block;
  width: 168px;
  height: auto;
}

/* ── dot-grid utility ── */
.dot-grid {
  background-image: radial-gradient(circle, rgba(76, 163, 255, .62) 1px, transparent 1.7px);
  background-size: 10px 10px;
}

/* ── Neon arrow decoration ── */
.neon-arrow {
  position: absolute;
  left: -10.5rem;
  top: 5.6rem;
  z-index: 4;
  width: min(8.6rem, 16vw);
  height: 14rem;
  clip-path: polygon(0 0, 52% 0, 100% 50%, 52% 100%, 0 100%, 48% 50%);
  background:
    radial-gradient(circle at 65% 45%, rgba(255,255,255,.95) 0 1px, transparent 2px) 0 0 / 12px 12px,
    linear-gradient(135deg, #0a43d9, #08a8ff 60%, #0437bd);
  box-shadow: 0 0 0 3px rgba(20, 156, 255, .28), 0 0 36px rgba(0, 119, 255, .75), inset 0 0 24px rgba(255,255,255,.55);
  opacity: .9;
}

/* ── Focus overlay (AI Quote Builder modal) ── */
.focus-overlay {
  opacity: 0;
  pointer-events: none;
  transform: scale(.985);
  transition: opacity .24s ease, transform .24s ease;
}

.focus-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.focus-panel {
  width: min(1180px, calc(100vw - 24px));
  height: min(820px, calc(100vh - 24px));
}

/* ── Progress bar animation ── */
.progress-bar {
  transition: width .2s ease;
}

/* ── Chat message animation ── */
.message-row {
  animation: rise .22s ease both;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Responsive: hide neon arrow, disable clip-path step-card, full-height focus panel ── */
@media (max-width: 920px) {
  .neon-arrow { display: none; }
  .focus-panel { height: calc(100vh - 18px); }
}

/* ── Footer ── */
.site-footer {
  padding: 20px 0 0;
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr repeat(3, 1fr) 1.3fr;
  gap: 24px;
  align-items: start;
  padding-bottom: 14px;
  padding-right: 35px;
}

.footer-brand .brand-logo {
  width: 158px;
}

.footer-tagline {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 10.5px;
  font-weight: 400;
  line-height: 1.45;
}

.footer-copy,
.footer-bottom a {
  color: #8fa0b8;
  font-size: 10px;
  font-weight: 400;
}

.footer-col h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-col a {
  display: block;
  margin: 0 0 5px;
  color: #5a6e8a;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.2;
}

.newsletter p {
  margin: 0 0 6px;
  color: #5a6e8a;
  font-size: 10.5px;
  font-weight: 400;
}

.email-box {
  display: flex;
  height: 27px;
  overflow: hidden;
  border: 1px solid rgba(7, 21, 60, 0.14);
  border-radius: 5px;
  background: #fff;
}

.email-box input {
  flex: 1;
  border: 0;
  outline: 0;
  padding: 0 8px;
  color: var(--ink);
  font-size: 11px;
  background: transparent;
}

.email-box input::placeholder {
  color: #9aa6b9;
}

.email-box button {
  width: 28px;
  border: 0;
  background: var(--proof);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.socials {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.socials span {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--proof);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid #e8eef6;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.made-for {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #6f7f98;
  font-size: 10px;
  margin-left: auto;
  font-weight: 500;
  padding-right: 90px;
}

.svg-icon,
.svg-asset {
  display: block;
  width: 100%;
  height: 100%;
}

/* ── Responsive footer ── */
@media (max-width: 840px) {
  .made-for {
    padding-right: 0;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(calc(100% - 34px), 1120px);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding-right: 0;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    gap: 8px;
    padding: 8px 0;
    flex-wrap: wrap;
  }

  .made-for {
    width: 100%;
    padding-right: 0;
    margin-left: 0;
  }
}

/* ── 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(--proof) !important;
}

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

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


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

@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;
	}
}

/* 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: transparent 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(--proof);
}

.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(--proof2);
	cursor: pointer;
}

.main_form .wizard_form .nextArrowBtn {
	position: absolute;
	top: 45%;
	right: 7%;
	font-size: 50px;
	color: var(--proof2);
	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;
}

/* Google Places autocomplete dropdown */
.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 — shared CRM integration styles
   ============================================================ */

:root {
  --ov-primary: var(--proof, #0857ff);
  --ov-primary-dark: var(--blue-dark, #0040cc);
  --ov-primary-soft: var(--soft, #eef5ff);
  --ov-ink: var(--ink, #071229);
  --ov-muted: var(--muted, #5a6e8a);
  --ov-line: var(--line, #d6e5ff);
}

.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; }
.article_overview .blogCardMain .blog_title { color: var(--ov-ink); transition: color .2s ease; }
.article_overview .blogCardMain .blog_title:hover { color: var(--ov-primary); }
.article_overview .blogCardMain .blog_tags {
  background-color: var(--ov-primary);
  border: 1px solid var(--ov-primary);
  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(--ov-primary); fill: var(--ov-primary); }
.article_overview .blogCardMain .blog_date { color: var(--ov-muted); }

/* 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; }

/* Course overview */
.course__text__wraper { width: 100%; }
.course__text__wraper .course__text h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--ov-ink);
  margin-bottom: 8px;
}
.course__text__wraper .course__icon .nav { display: flex; gap: 8px; }
.course__text__wraper .course__icon .nav a { color: var(--ov-muted); }
.course__text__wraper .course__icon .nav a.active { color: var(--ov-ink); }
.course__button a {
  max-width: 350px !important;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  height: 26px;
  width: 114px;
  background: var(--ov-primary);
  color: #fff;
  display: inline-block;
  text-align: center;
  line-height: 23px;
  font-weight: 600;
  font-size: 14px;
  margin-right: 20px;
  border-radius: 4px;
  border: 1px solid var(--ov-primary);
}
.course__button a:hover {
  background: transparent;
  color: var(--ov-primary);
  border: 1px solid var(--ov-primary);
}
.course__input {
  border: 1px solid var(--ov-line);
  border-radius: 6px;
  padding: 10px 14px;
  width: 100%;
}
.course__input:focus { outline: none; border-color: var(--ov-primary); }
.course__categories__list { list-style: none; padding: 0; }
.course__categories__list li {
  padding: 8px 12px;
  border-bottom: 1px solid var(--ov-line);
  cursor: pointer;
  color: var(--ov-muted);
}
.course__categories__list li:hover { color: var(--ov-primary); }
.course__sidebar__wraper {
  padding: 24px;
  border: 1px solid var(--ov-line);
  border-radius: 8px;
  background: #fff;
}

/* Course/blog grid cards */
.gridarea__wraper { width: 100%; }
.gridarea__wraper .gridarea__img { max-height: 250px; width: auto !important; border-radius: 0.5rem; overflow: hidden; }
.gridarea__wraper .gridarea__img img { max-width: 100%; width: 100% !important; height: auto; transition: transform .3s ease; }
.gridarea__wraper:hover .gridarea__img img { transform: scale(1.04); }
.gridarea__wraper .gridarea__content { padding: 16px; }
.gridarea__wraper .gridarea__content .gridarea__heading h3 { font-weight: 600; font-size: 18px; color: var(--ov-ink); }
.gridarea__wraper.gridarea__course__list .gridarea__content .gridarea__price {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: var(--ov-primary);
}

/* 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(8, 87, 255, .2);
}
.featured_card {
  border: 2px solid var(--ov-primary) !important;
  transform: scale(1.02);
  box-shadow: 0 8px 30px rgba(8, 87, 255, .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(8, 87, 255, .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 .payment_plan_card .fa-check { color: var(--ov-primary) !important; }
#payment_plan .planCardMain { width: 100% !important; }

/* Plan checkout */
.detailRightCard {
  border: 1px solid var(--ov-line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}
#payment_cust_detail .border-b,
#payment_cust_detail .border { border-color: var(--ov-line); }
#payment_cust_detail .form-control {
  border: 1px solid var(--ov-line);
  border-radius: 6px;
  padding: 10px 12px;
}
#payment_cust_detail .form-control:focus {
  outline: none;
  border-color: var(--ov-primary);
  box-shadow: 0 0 0 3px rgba(8, 87, 255, .1);
}

/* Webinar */
.webinar_detail { padding: 100px 0; }
.webinarStatus { justify-items: center; }
.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 .eventbfr::after {
  content: ':';
  position: absolute;
  left: -26px;
  font-size: 60px;
  color: var(--ov-ink);
  font-family: 'Inter', sans-serif;
}
.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%; padding-top: 80px !important; }
.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; }

/* Responsive overview */
@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; }
}
/* Tablet: push girl left (no card overlap), arrow to far right (no text overlap) */
@media (min-width: 768px) and (max-width: 1023px) {
  .proof-hero-girl { left: -130px !important; }
  .proof-tablet-arrow { right: 260px !important; left: auto !important; }
}

/* Hide hero girl and desktop arrow at narrow desktop (1024–1260px) */
@media (min-width: 1024px) and (max-width: 1260px) {
  .proof-hero-girl,
  .proof-hero-arrow { display: none !important; }
}


/* Hide footer house below 945px */
@media (max-width: 944px) {
  .proof-footer-house { display: none !important; }
}


/* At 1024–1263px: hide overlapping row, show 2×2 grid instead */
@media (min-width: 1024px) and (max-width: 1263px) {
  .proof-steps-desktop { display: none !important; }
  .proof-steps-tablet { display: grid !important; }
}

/* Badge horizontal scroll at narrow desktop (1024–1110px) */
@media (min-width: 1024px) and (max-width: 1110px) {
  .proof-text-wrapper {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* Hide tablet arrow below 927px */
@media (max-width: 926px) {
  .proof-tablet-arrow { display: none !important; }
}


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

/** Providers Overview */
.providers_overview .provider-card .avatar-initial { background: #0857ff; }
.providers_overview .provider-card .btn-view-profile {
	  color: #fff !important;
    border-color: #0857ff !important;
    background-color: #0857ff !important;
    padding: 8px 6px;
}
.providers_overview .provider-card .btn-view-profile:hover {
	  color: #fff !important;
    border-color: #0040cc !important;
    background-color: #0040cc !important;
}

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

/** Webinars Overview */
.webinars_overview .webinar_card {
    --tw-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --tw-shadow-colored: 0 4px 20px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.webinars_overview .webinar_card .webinar_title { color: #000000; }
.webinars_overview .webinar_card .webinar_title:hover { color: #0857ff; }

.webinars_overview .webinar_card .learn_more { color: #000000; }
.webinars_overview .webinar_card .learn_more:hover { color: #0857ff; }
.webinars_overview .webinar_card .webinar_host_initial { background: #0857ff26; color: #0857ff; }

/** Service Overview */
.services_overview .service_card .service_name { color: #000000; }
.services_overview .service_card .service_name:hover { color: #0857ff; }

.services_overview .service_card .learn_more { color: #000000; }
.services_overview .service_card .learn_more:hover { color: #0857ff; }

/* ── Creators overview page — arbitrary Tailwind JIT classes not compiled ── */

.creators_overview .flex.flex-wrap > div {
    padding-top: 100px;
    padding-bottom: 40px;
}

.creators_overview .grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
    gap: 18px !important;
}

.creators_overview .creator-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 0.15s, box-shadow 0.15s;
}
.creators_overview .creator-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.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;
    height: 52px;
    background: linear-gradient(300deg, #0040cc, #0857ff, #4080ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 800;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.creators_overview .creator-card > div:first-child > img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.creators_overview .creator-card > div:first-child > div:last-child {
    flex: 1;
    min-width: 0;
}

.creators_overview .creator_name {
    color: #111827;
    margin-bottom: 3px;
}

.creators_overview .creator-no-leads {
    color: #6B6B72 !important;
}
.creators_overview .creator-leads-badge {
    border-color: rgba(48, 209, 88, 0.5) !important;
    background-color: rgba(48, 209, 88, 0.15) !important;
}

/* ─── Job Listing (detailed overrides) ─── */
.job_listing .sticky { position: static !important; }
.job_listing .bg-blue-600 { background-color: #0857ff !important; border-color: #0857ff !important; color: #ffffff !important; }
.job_listing .bg-blue-500 {
	--tw-bg-opacity: 1;
	background-color: #0857ff !important;
}
.job_listing .hover\:bg-gray-200:hover { background-color: rgba(214, 229, 255, 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, 255, 255, 0.98) !important; border-bottom: 1px solid rgba(214, 229, 255, 0.7) !important; box-shadow: 0 1px 6px rgba(8, 87, 255, 0.08) !important; }
.job_listing .rounded-2xl.shadow-md { box-shadow: 0 2px 12px rgba(8, 87, 255, 0.08) !important; }
.job_listing .hover\:shadow-2xl:hover { box-shadow: 0 8px 32px rgba(8, 87, 255, 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(214, 229, 255, 0.7);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(8, 87, 255, 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(8, 87, 255, 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, #0857ff, #0040cc);
  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: #071229; margin-bottom: 3px; }
.providers_overview .provider-location { font-size: .82rem; color: #5a6e8a; }
.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: #5a6e8a; }
.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: #145e2e; 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(214, 229, 255, 0.6); color: #5a6e8a; background: rgba(255, 255, 255, 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(8, 87, 255, 0.08); border: 1.5px solid rgba(8, 87, 255, 0.4);
  color: #003399; 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: #0857ff; border-color: #0857ff; color: #fff; }

/* ─── Webinars Overview — header clearance + card frame ─── */
.webinars_overview section { padding-top: 120px; }
.webinars_overview .webinar_card { border: 1px solid rgba(214, 229, 255, 0.85); }
.webinars_overview .webinar_card:hover { border-color: rgba(8, 87, 255, 0.4); box-shadow: 0 6px 24px rgba(8, 87, 255, 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: #071229; }
.webinars_overview .learn_more { color: #0857ff; }

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

/* ─── 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(8, 87, 255, 0.10); }
.services_overview h1, .services_overview .service_name { color: #071229; }
.services_overview .learn_more { color: #0857ff; }

/* ─── Cities Overview — city cards + spacing ─── */
#citiesGrid { gap: 1.5rem; }
.city-card { background: #ffffff; border: 1px solid rgba(214, 229, 255, 0.7); box-shadow: 0 2px 12px rgba(8, 87, 255, 0.08); }
.city-card:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(8, 87, 255, 0.14); border-color: rgba(8, 87, 255, 0.4); }
.view-city-btn { color: #0857ff; }
#citiesCounter { color: #0040cc; }
.cities-dark-cta { padding-top: 72px; padding-bottom: 72px; background-color: #1C1C1E; }
#waitlistCard { background: #ffffff; box-shadow: 0 2px 12px rgba(8, 87, 255, 0.08); border: 1px solid rgba(214, 229, 255, 0.5); max-width: 560px; margin: 2rem auto 0; }
.content_sec > div:nth-child(2) { padding-top: 56px; padding-bottom: 56px; }

/* ─── Feedback Cards ─── */
[widget-type="review"] figure {
  min-width: 280px;
  max-width: 350px;
  border-color: #d6e5ff !important;
  box-shadow: 0 4px 20px rgba(8, 87, 255, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04) !important;
}
[widget-type="review"] blockquote { color: #071229; }
[widget-type="review"] blockquote > div { min-height: 115px; color: #5a6e8a; }
[widget-type="review"] blockquote > p::before { content: '\201C'; }
[widget-type="review"] blockquote > p::after { content: '\201D'; }
[widget-type="review"] figcaption { color: #5a6e8a; }
[widget-type="review"] figcaption::before { content: '\2013\00A0'; }
[widget-type="review"] .fill-\[#ffd52c\] { fill: #ffd52c !important; }

/* ─── Course Gallery ─── */
[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; }
