/* ==========================================================================
   Ambika Institute of Pharmacy - Modern, Uncluttered, Elegant Stylesheet
   ========================================================================== */

:root {
  /* Refined Academic Palette */
  --brand-primary: #0a4d3c;
  --brand-dark: #063327;
  --brand-deep: #032018;
  --brand-light: #126e57;
  --brand-tint: #f0f7f4;
  --brand-gold: #c68a25;
  --brand-gold-hover: #ad7417;
  --brand-gold-tint: #fdf8ed;
  
  /* Modern Neutral Palette */
  --text-heading: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  
  --bg-page: #f8fafc;
  --bg-surface: #ffffff;
  --border-subtle: #e2e8f0;
  --border-strong: #cbd5e1;

  /* Elevation */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 4px 16px -2px rgba(10, 77, 60, 0.08), 0 2px 6px -1px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 12px 32px -4px rgba(10, 77, 60, 0.12), 0 4px 12px -2px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 20px 40px -8px rgba(10, 77, 60, 0.16);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
}

/* Base Typography & Defaults */
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  color: var(--text-body);
  background-color: var(--bg-page);
  line-height: 1.68;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: -0.025em;
  line-height: 1.25;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem !important; }
h6 { font-size: 0.95rem; }

p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.lead {
  font-size: 1.125rem;
  line-height: 1.7;
}

a {
  color: var(--brand-primary);
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  color: var(--brand-gold);
}

/* ==========================================================================
   Top Notification Header
   ========================================================================== */
.site-top-bar {
  background-color: var(--brand-dark);
  color: #e2e8f0;
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 2px solid var(--brand-gold);
}

.site-top-bar a {
  color: #e2e8f0;
}

.site-top-bar a:hover {
  color: var(--brand-gold);
}

.site-top-pill {
  background: rgba(198, 138, 37, 0.2);
  color: #fce8bd;
  border: 1px solid var(--brand-gold);
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ==========================================================================
   Main Branding Header
   ========================================================================== */
.site-header-branding {
  background: var(--bg-surface);
  padding: 16px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.brand-emblem-box {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-dark));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.8rem;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--brand-gold);
  flex-shrink: 0;
}

.brand-title {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--brand-dark);
  margin-bottom: 2px;
  line-height: 1.15;
}

.brand-subtext {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.header-contact-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  background: var(--brand-tint);
  border-radius: var(--radius-md);
  border: 1px solid #d3e7df;
}

.header-contact-icon {
  width: 36px;
  height: 36px;
  background: var(--brand-primary);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ==========================================================================
   Navigation Bar
   ========================================================================== */
.site-nav {
  background-color: var(--brand-primary) !important;
  box-shadow: 0 4px 20px rgba(6, 51, 39, 0.15);
  padding: 0;
  border-bottom: 3px solid var(--brand-gold);
}

.site-nav .nav-link {
  color: #f1f5f9 !important;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 16px 14px !important;
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav .nav-link:hover,
.site-nav .nav-link.active {
  color: #ffffff !important;
  background-color: rgba(255, 255, 255, 0.12);
}

.dropdown-menu {
  border: 1px solid var(--border-subtle);
  border-top: 3px solid var(--brand-gold);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  min-width: 230px;
}

.dropdown-item {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-body);
  padding: 9px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.15s ease;
}

.dropdown-item:hover {
  background-color: var(--brand-tint);
  color: var(--brand-primary);
  transform: translateX(4px);
}

/* Quick Page Explorer Modal Trigger */
.btn-portal-search {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.btn-portal-search:hover {
  background: #ffffff;
  color: var(--brand-primary);
}

/* ==========================================================================
   Buttons & Badges
   ========================================================================== */
.btn {
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: 10px 22px;
  font-size: 0.95rem;
  transition: all 0.25s ease;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.btn-brand-gold {
  background-color: var(--brand-gold) !important;
  color: #ffffff !important;
  border: 1px solid var(--brand-gold) !important;
}

.btn-brand-gold:hover {
  background-color: var(--brand-gold-hover);
  color: #ffffff;
  border-color: var(--brand-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(198, 138, 37, 0.3);
}

.btn-brand-primary {
  background-color: var(--brand-primary) !important;
  color: #ffffff !important;
  border: 1px solid var(--brand-primary) !important;
}

.btn-brand-primary:hover {
  background-color: var(--brand-dark);
  color: #ffffff;
  border-color: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(10, 77, 60, 0.25);
}

/* ==========================================================================
   Hero Banner Section
   ========================================================================== */
.hero-wrapper {
  position: relative;
  background: linear-gradient(145deg, var(--brand-deep) 0%, var(--brand-dark) 60%, var(--brand-primary) 100%);
  color: #ffffff;
  padding: 80px 0 90px;
  overflow: hidden;
}

.hero-wrapper::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(198, 138, 37, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fce8bd;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-stats-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-form-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  color: var(--text-body);
}

/* ==========================================================================
   Stats Section
   ========================================================================== */
.stats-strip {
  background: #ffffff;
  border-bottom: 1px solid var(--border-subtle);
  padding: 40px 0;
}

.stat-item {
  text-align: center;
  padding: 12px;
}

.stat-item-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--brand-primary);
  line-height: 1.1;
  font-family: 'Outfit', sans-serif;
  margin-bottom: 4px;
}

.stat-item-label {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ==========================================================================
   Course Showcase Cards
   ========================================================================== */
.course-card-pro {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.course-card-pro:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: #cbd5e1;
}

.course-card-top-bar {
  padding: 24px 28px;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.course-card-top-bar.b-pharma-theme {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-primary));
}

.course-card-top-bar.d-pharma-theme {
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
}

.course-card-body {
  padding: 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.course-meta-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.course-meta-pill {
  background: var(--bg-page);
  border: 1px solid var(--border-subtle);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* ==========================================================================
   Notice Board & Ticker
   ========================================================================== */
.notice-card-clean {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  height: 100%;
}

.notice-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #f1f5f9;
  cursor: pointer;
  transition: all 0.2s ease;
}

.notice-row:last-child {
  border-bottom: none;
}

.notice-row:hover {
  padding-left: 8px;
  background-color: var(--brand-tint);
  border-radius: var(--radius-sm);
}

.notice-calendar-badge {
  background: var(--brand-tint);
  color: var(--brand-primary);
  border: 1px solid #d3e7df;
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  text-align: center;
  min-width: 64px;
  flex-shrink: 0;
  font-weight: 700;
}

.notice-calendar-badge .month {
  font-size: 0.72rem;
  text-transform: uppercase;
  display: block;
}

.notice-calendar-badge .day {
  font-size: 1.25rem;
  line-height: 1;
}

/* ==========================================================================
   Page Headers (Subpages)
   ========================================================================== */
.page-hero-banner {
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-primary) 100%);
  color: #ffffff;
  padding: 50px 0;
  margin-bottom: 40px;
  position: relative;
}

.page-hero-banner .breadcrumb {
  margin-bottom: 12px;
}

.page-hero-banner .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
}

.page-hero-banner .breadcrumb-item.active {
  color: var(--brand-gold);
  font-size: 0.88rem;
}

.page-hero-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: #ffffff;
}

/* ==========================================================================
   Clean Content Cards & Forms
   ========================================================================== */
.card {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  background: var(--bg-surface);
  transition: all 0.2s ease;
}

.card:hover {
  box-shadow: var(--shadow-md);
}

.card-clean {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 32px;
  margin-bottom: 24px;
}

/* Tables */
.table {
  color: var(--text-body);
  font-size: 0.92rem;
  border-color: var(--border-subtle);
  vertical-align: middle;
}

.table th {
  background-color: var(--bg-page);
  color: var(--text-heading);
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  padding: 14px 16px;
  border-bottom: 2px solid var(--border-subtle);
}

.table td {
  padding: 14px 16px;
}

.table-hover tbody tr:hover {
  background-color: var(--brand-tint);
}

/* Badges */
.badge {
  padding: 6px 12px;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  border-radius: 6px;
}

/* Alerts */
.alert {
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: 0.95rem;
}

.form-label {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-heading);
  margin-bottom: 6px;
}

.form-control, .form-select {
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.95rem;
  color: var(--text-body);
  transition: all 0.2s ease;
}

.form-control:focus, .form-select:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 4px rgba(10, 77, 60, 0.12);
}

/* ==========================================================================
   Gallery Items
   ========================================================================== */
.gallery-grid-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  background: #000;
}

.gallery-grid-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-grid-card:hover img {
  transform: scale(1.06);
  opacity: 0.9;
}

.gallery-grid-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
  color: #ffffff;
  padding: 24px 16px 12px;
}

/* ==========================================================================
   Faculty Cards
   ========================================================================== */
.faculty-card-clean {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}

.faculty-card-clean:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: #cbd5e1;
}

.faculty-avatar-circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  margin: 0 auto 16px;
  overflow: hidden;
  border: 3px solid var(--brand-tint);
  box-shadow: var(--shadow-sm);
}

.faculty-avatar-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   Footer & SEO Layout (4 Columns + Full-Width SEO Box + Copyright)
   ========================================================================== */
.site-footer {
  background-color: var(--brand-deep);
  color: #cbd5e1;
  padding-top: 60px;
  border-top: 5px solid var(--brand-gold);
}

.footer-heading {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background-color: var(--brand-gold);
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 10px;
}

.footer-menu a {
  color: #94a3b8;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.footer-menu a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

/* Full-width SEO Keywords Section */
.footer-seo-container {
  background-color: #02140f;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px 0;
  font-size: 0.82rem;
  line-height: 1.7;
  color: #94a3b8;
}

.seo-pill-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.06);
  color: #cbd5e1;
  padding: 3px 10px;
  border-radius: 4px;
  margin: 3px 4px;
  font-size: 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-strip {
  background-color: #010c09;
  padding: 18px 0;
  font-size: 0.85rem;
  color: #64748b;
}

.footer-bottom-strip a {
  color: var(--brand-gold);
}

/* ==========================================================================
   Floating Action Button
   ========================================================================== */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1040;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-action-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  transition: all 0.25s ease;
  border: none;
  font-size: 1.2rem;
  text-decoration: none;
}

.floating-action-btn:hover {
  transform: scale(1.1);
  color: #ffffff;
}

.fab-apply { background-color: var(--brand-gold); }
.fab-call { background-color: var(--brand-primary); }
.fab-top { background-color: #334155; }

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .site-header-branding {
    padding: 12px 0;
  }
  .hero-wrapper {
    padding: 50px 0 60px;
  }
}

/* Accessibility, performance and responsive refinements */
img { max-width: 100%; }
.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 2000;
  padding: .75rem 1rem;
  color: #fff;
  background: var(--brand-dark);
  border-radius: .5rem;
}
.skip-link:focus { top: 1rem; color: #fff; }
:focus-visible { outline: 3px solid var(--brand-gold); outline-offset: 3px; }
.table-responsive { scrollbar-width: thin; }
.page-view:not(.d-none) { animation: page-in .22s ease-out; }
@keyframes page-in { from { opacity: 0; transform: translateY(6px); } }

@media (max-width: 991.98px) {
  .site-nav { padding: .45rem 0; }
  .site-nav .nav-link { padding: .75rem .5rem !important; }
  .site-nav .dropdown-menu { border-radius: .65rem; box-shadow: none; }
  .brand-title { font-size: clamp(1.05rem, 4vw, 1.4rem); }
  .brand-subtext { font-size: .76rem; }
  .page-hero-banner { padding: 2.75rem 0; }
}

@media (max-width: 767.98px) {
  html { scroll-padding-top: 4rem; }
  .site-top-bar { font-size: .77rem; }
  .site-header-branding .container > a { min-width: 0; }
  .brand-emblem-box { width: 48px; height: 48px; font-size: 1.4rem; }
  .hero-wrapper { padding: 2.75rem 0 3.25rem; }
  .hero-form-card { margin-top: .5rem; }
  .stats-strip .col-6 { border-bottom: 1px solid rgba(255,255,255,.12); }
  .section-title { font-size: clamp(1.45rem, 7vw, 2rem); }
  .floating-actions { right: 14px; bottom: 14px; gap: 9px; }
  .floating-action-btn { width: 44px; height: 44px; }
  .site-footer { padding-top: 44px; }
  .footer-bottom-strip { text-align: center; }
  .footer-bottom-strip .container { justify-content: center !important; }
  .modal-dialog { margin: .75rem; }
}

@media (max-width: 575.98px) {
  body { font-size: .96rem; }
  .container { --bs-gutter-x: 1.35rem; }
  .site-top-pill { font-size: .67rem; }
  .page-hero-title { font-size: clamp(1.65rem, 9vw, 2.25rem); }
  .page-hero-banner .lead { font-size: .96rem; }
  .btn { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
  .card-body, .content-card-clean { padding: 1.15rem; }
  .form-control, .form-select { min-height: 46px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

@media print {
  .site-top-bar, .site-header-branding, .site-nav, .floating-actions, .site-footer, .btn { display: none !important; }
  .page-view { display: none !important; }
  .page-view:not(.d-none) { display: block !important; }
  body { background: #fff; color: #000; }
}


.hero-form-card .frm_forms {
    margin: 0;
}

.hero-form-card .frm_form_fields {
    margin: 0;
}

.hero-form-card .frm_form_field {
    margin-bottom: 16px;
}

.hero-form-card .frm_primary_label {
    display: block;
    margin-bottom: 6px;
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
}

.hero-form-card input[type="text"],
.hero-form-card input[type="tel"],
.hero-form-card input[type="email"],
.hero-form-card select,
.hero-form-card textarea {
    width: 100% !important;
    height: 46px;
    padding: 10px 14px;
    border: 1px solid #d9dee3;
    border-radius: 8px;
    background: #fff;
    color: #1f2937;
    font-size: 15px;
    box-sizing: border-box;
    outline: none;
}

.hero-form-card textarea {
    height: 100px;
    resize: vertical;
}

.hero-form-card input:focus,
.hero-form-card select:focus,
.hero-form-card textarea:focus {
    border-color: #0b5d3b;
    box-shadow: 0 0 0 3px rgba(11, 93, 59, 0.08);
}

.hero-form-card .frm_button_submit {
    width: 100% !important;
    min-height: 46px;
    margin: 0 !important;
    padding: 12px 18px !important;
    border: 0 !important;
    border-radius: 8px !important;
    background: #0b5d3b !important;
    color: #fff !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    box-shadow: none !important;
}

.hero-form-card .frm_button_submit:hover {
    background: #084b30 !important;
}

.hero-form-card .frm_description,
.hero-form-card .frm_error {
    font-size: 13px;
}

.hero-form-card .frm_error {
    color: #c62828;
}

.hero-form-card .frm_message {
    border-radius: 8px;
    padding: 12px;
}

/* Hide Formidable form title if already using ACF heading */
.hero-form-card .frm_forms h3,
.hero-form-card .frm_forms .frm_form_title {
    display: none !important;
}

/* Hide honeypot / anti-spam field visually */
.hero-form-card .frm_verify,
.hero-form-card .frm_form_field.frm_html_container:has(input[name*="honeypot"]) {
    display: none !important;
}

.frm_screen_reader{
    display: none !important;
}

#frm_field_11_container{
    display: none !important;
}