@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,300italic,400,400italic,600&display=swap");
@import url("fontawesome-all.min.css");

/*
	Helios by HTML5 UP
	html5up.net | @ajlkn
	Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
*/

/* CSS Reset */
html, body, div, span, applet, object,
iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
pre, a, abbr, acronym, address, big, cite,
code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b,
u, i, center, dl, dt, dd, ol, ul, li, fieldset,
form, label, legend, table, caption, tbody,
tfoot, thead, tr, th, td, article, aside,
canvas, details, embed, figure, figcaption,
footer, header, hgroup, menu, nav, output, ruby,
section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

	blockquote:before, blockquote:after, q:before, q:after {
		content: '';
		content: none;
	}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

body {
	-webkit-text-size-adjust: none;
}

mark {
	background-color: transparent;
	color: inherit;
}

input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input, select, textarea {
	-moz-appearance: none;
	-webkit-appearance: none;
	-ms-appearance: none;
	appearance: none;
}

/* Basic Styles */
html {
	box-sizing: border-box;
}

*, *:before, *:after {
	box-sizing: inherit;
}

body {
	background: #fff;
	color: #5b5b5b;
	font-size: 15pt;
	line-height: 1.85em;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 300;
}

body.is-preload *, body.is-preload *:before, body.is-preload *:after {
	-moz-animation: none !important;
	-webkit-animation: none !important;
	-ms-animation: none !important;
	animation: none !important;
	-moz-transition: none !important;
	-webkit-transition: none !important;
	-ms-transition: none !important;
	transition: none !important;
}

#cal-consultation-btn{
  margin-top: 0!important;
  font-weight: 500!important;
}

input, textarea, select {
	font-size: 15pt;
	line-height: 1.85em;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 300;
}

/* Montshield Green Theme - Production Styles */

/* Color Variables */
:root {
  --montshield-green: #115619;
  --montshield-green-light: #1a7a1f;
  --montshield-green-dark: #0d3f11;
  --montshield-green-accent: #2d8f33;
  --montshield-text-dark: #000000;
  --montshield-text-light: #ffffff;
}

/* Override template colors with black text theme */
h1, h2, h3, h4, h5, h6 {
  color: var(--montshield-text-dark) !important;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: var(--montshield-text-dark) !important;
}

strong, b {
  color: var(--montshield-text-dark) !important;
}

/* Button styling with green theme */
input[type="button"],
input[type="submit"],
input[type="reset"],
button,
.button {
  background: var(--montshield-green) !important;
  color: var(--montshield-text-light) !important;
}

input[type="button"]:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
button:hover,
.button:hover {
  background: var(--montshield-green-light) !important;
  color: var(--montshield-text-light) !important;
}

/* Link hover colors */
a:hover {
  color: var(--montshield-green) !important;
  border-bottom-color: transparent !important;
}

/* Form focus colors */
form input[type="text"]:focus,
form input[type="email"]:focus,
form input[type="password"]:focus,
form select:focus,
form textarea:focus {
  background: #fff !important;
  border-color: var(--montshield-green) !important;
}

/* Icon hover colors */
ul.icons li a:hover {
  color: var(--montshield-green) !important;
}

/* Dropdown hover colors */
.dropotron li:hover {
  color: var(--montshield-green) !important;
}

/* FAQ accordion styling (lightweight, theme-friendly) */
details.faq { 
  border-bottom: 1px solid rgba(17, 86, 25, 0.2); 
  padding: 0.5rem 0; 
}
details.faq summary { 
  cursor: pointer; 
  list-style: none; 
  font-weight: 600; 
  color: var(--montshield-text-dark);
}
details.faq summary::-webkit-details-marker { 
  display: none; 
}
details.faq summary:after { 
  content: '\25bc'; 
  float: right; 
  transition: transform 200ms ease; 
  opacity: 0.6; 
  color: var(--montshield-green);
}
details.faq[open] summary:after { 
  transform: rotate(180deg); 
}
details.faq .answer { 
  margin: 0.5rem 0 0.25rem 0; 
}

/* Enhanced testimonials styling with green theme */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}
.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid var(--montshield-green);
  border-radius: 12px;
  padding: 1.5rem;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 1rem;
  height: 100%;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(17, 86, 25, 0.2);
  border-color: var(--montshield-green-light);
}
.testimonial-card::before {
  content: '"';
  font-size: 4rem;
  color: rgba(17, 86, 25, 0.3);
  position: absolute;
  top: 20px;
  left: 15px;
  font-family: serif;
}
.testimonial-quote {
  font-style: italic;
  margin: 1rem 0;
  line-height: 1.6;
  position: relative;
  z-index: 1;
  color: var(--montshield-text-dark);
}
.testimonial-cite {
  display: block;
  text-align: right;
  font-size: 0.9rem;
  color: var(--montshield-green);
  margin-top: 1rem;
  font-weight: 600;
  font-style: normal;
}

/* Trust section header styling */
.trust-header {
  text-align: center;
  margin-bottom: 3rem;
}

.trust-header h2 {
  font-size: 2.5em;
  margin-bottom: 1rem;
  color: var(--montshield-text-dark) !important;
}

.trust-header p {
  font-size: 1.2em;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Trust features styling */
.trust-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
  padding: 2rem 0;
}

.trust-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 2px solid rgba(17, 86, 25, 0.1);
}

.trust-feature:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--montshield-green-light);
  box-shadow: 0 10px 25px rgba(17, 86, 25, 0.1);
}

.trust-feature i {
  font-size: 2.5rem;
  color: var(--montshield-green);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.trust-feature:hover i {
  transform: scale(1.1);
  color: var(--montshield-green-light);
}

.trust-feature span {
  font-weight: 500;
  color: var(--montshield-text-dark);
  font-size: 1.1em;
}

/* Trust logos container */
.trust-logos-container {
  text-align: center;
}

.trust-logos-container h3 {
  font-size: 1.8em;
  margin-bottom: 2rem;
  color: var(--montshield-text-dark) !important;
  font-weight: 600;
}

/* Trust logos styling */
.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 2px solid rgba(17, 86, 25, 0.1);
  min-width: 150px;
}

.trust-logo-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--montshield-green-light);
  box-shadow: 0 15px 30px rgba(17, 86, 25, 0.15);
}

.trust-logo-item img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

.trust-logo-item:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.trust-logo-label {
  font-weight: 600;
  color: var(--montshield-text-dark);
  font-size: 0.9em;
  text-align: center;
}

/* Responsive design for trust section */
@media screen and (max-width: 1024px) {
  .container.special {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .container.special {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .trust-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .trust-logos {
    gap: 2rem;
  }
  
  .trust-logo-item {
    min-width: 120px;
    padding: 1rem;
  }
  
  .trust-logo-item img {
    width: 60px;
    height: 60px;
  }
  
  .trust-header h2 {
    font-size: 2em;
  }
  
  .trust-header p {
    font-size: 1em;
  }

  .programs-cta .button {
    background: var(--montshield-green) !important;
    color: white !important;
    padding: 0rem 2.5rem !important;
    font-size: 1.1em;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(17, 86, 25, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
  }

  .col-8.col-12-mobile{
    margin-bottom: 0!important;
  }

  .thisone{
    grid-template-columns: 1fr!important;
  }

  h1{
    line-height: 1.1;
  }
}

@media screen and (max-width: 480px) {
  .container.special {
    padding-left: 0.8rem;
    padding-right: 0.8rem;
  }
  
  .trust-features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .trust-feature {
    padding: 1rem;
  }
  
  .trust-feature i {
    font-size: 2rem;
  }
  
  .trust-logos {
    gap: 1.5rem;
  }
  
  .trust-logo-item {
    min-width: 100px;
    padding: 0.8rem;
  }
  
  .trust-logo-item img {
    width: 50px;
    height: 50px;
  }
}

/* Green background sections */
.wrapper.style2 {
  background: linear-gradient(135deg, rgba(17, 86, 25, 0.05) 0%, rgba(26, 122, 31, 0.05) 100%);
  padding: 50px 0;
}

/* Footer styling */
#footer {
  background: #ffffff !important;
  border-top: 1px solid rgba(17, 86, 25, 0.1);
  padding: 3rem 0 1rem 0;
  margin-top: 0;
}

.footer-bottom{
  display: none!important;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  gap: 3rem;
}

.footer-left {
  flex: 0 0 auto;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo img {
  width: 60px;
  height: auto;
  object-fit: contain;
}

.footer-tagline {
  display: flex;
  flex-direction: column;
}

.company-name {
  font-size: 1.5em;
  font-weight: 700;
  color: var(--montshield-text-dark);
  margin-bottom: 0.25rem;
}

.company-description {
  font-size: 0.9em;
  color: #666;
  font-weight: 400;
}

.footer-right {
  flex: 1;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer-column h4 {
  font-size: 1.1em;
  font-weight: 600;
  color: var(--montshield-text-dark);
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--montshield-green);
  padding-bottom: 0.5rem;
}

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

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul li a {
  color: #666;
  text-decoration: none;
  font-size: 0.9em;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: var(--montshield-green);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(17, 86, 25, 0.1);
}

.footer-copyright p {
  color: #666;
  font-size: 0.9em;
  margin: 0;
}

/* Footer cities styling */
.footer-cities {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(17, 86, 25, 0.1);
  border-bottom: 1px solid rgba(17, 86, 25, 0.1);
}

.cities-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.city {
  color: var(--montshield-green);
  font-weight: 600;
  font-size: 1em;
  transition: all 0.3s ease;
}

.city:hover {
  color: var(--montshield-green-light);
}

.city-separator {
  color: #999;
  font-size: 1.2em;
  margin: 0 0.5rem;
}

.footer-contact {
  flex: 0 0 auto;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--montshield-green);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.9em;
  font-weight: 500;
  transition: all 0.3s ease;
}

.contact-button:hover {
  background: var(--montshield-green-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(17, 86, 25, 0.2);
}

.contact-button i {
  font-size: 1em;
}

/* Mobile Navigation Overrides */
@media screen and (max-width: 736px) {
  /* Hide desktop navigation on mobile */
  #nav {
    display: none !important;
  }
  
  /* Show mobile navigation button */
  #navButton {
    display: block !important;
  }
  
  /* Show mobile navigation panel */
  #navPanel {
    display: block !important;
  }
  
  /* Mobile navigation button styling */
  #navButton .toggle:before {
    background: var(--montshield-green) !important;
    color: white !important;
  }
  
  /* Mobile navigation panel styling */
  #navPanel {
    background: linear-gradient(135deg, var(--montshield-green) 0%, var(--montshield-green-light) 100%) !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }
  
  /* Hide scrollbar for mobile navigation */
  #navPanel::-webkit-scrollbar {
    display: none !important;
  }
  
  #navPanel {
    -ms-overflow-style: none !important;  /* IE and Edge */
    scrollbar-width: none !important;  /* Firefox */
  }
  
  #navPanel .link.depth-0 {
    color: white !important;
    font-weight: 600;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  }
  
  #navPanel .link.depth-1 {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.9em;
  }
  
  #navPanel .link:hover {
    color: white !important;
    background: rgba(255, 255, 255, 0.1);
  }
  
  /* Mobile mega menu styling */
  .mobile-menu-category {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .mobile-menu-toggle {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
  }
  
  .mobile-menu-toggle i {
    font-size: 0.8em !important;
    transition: transform 0.3s ease !important;
    margin-left: auto !important;
  }
  
  .mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1) !important;
  }
  
  .mobile-menu-submenu {
    display: none;
    background: rgba(0, 0, 0, 0.2);
    border-left: 3px solid rgba(255, 255, 255, 0.3);
    margin-left: 1rem;
  }
  
  .mobile-menu-submenu .link {
    padding-left: 1.5rem !important;
    font-size: 0.9em !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  }
  
  .mobile-menu-submenu .link:last-child {
    border-bottom: none !important;
  }
  
  .mobile-menu-submenu .link:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    padding-left: 2rem !important;
  }
  
  /* Ensure mobile navigation content is properly contained */
  #navPanel nav {
    max-height: 100% !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }
  
  /* Hide scrollbar for mobile navigation nav element */
  #navPanel nav::-webkit-scrollbar {
    display: none !important;
  }
  
  #navPanel nav {
    -ms-overflow-style: none !important;  /* IE and Edge */
    scrollbar-width: none !important;  /* Firefox */
  }
  
  /* Header adjustments for mobile */
  #header {
    padding: 1em 0 !important;
  }
  
  #header h1 {
    font-size: 2em !important;
  }
  
  #header .inner {
    padding-left: 1em;
    padding-right: 1em;
  }
}

/* Responsive design for footer */
@media screen and (max-width: 1024px) {
  #footer {
    padding: 2rem 0 1rem 0;
  }
  
  #footer .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
  }
  
  .footer-left {
    width: 100%;
    flex: 1 1 100%;
  }
  
  .footer-right {
    width: 100%;
    flex: 1 1 100%;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    width: 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding-top: 1.5rem;
    width: 100%;
  }
  
  .footer-cities {
    padding: 1rem 0;
  }
  
  .cities-container {
    gap: 1rem;
  }
  
  .city {
    font-size: 0.9em;
  }
  
  .city-separator {
    font-size: 1.1em;
    margin: 0 0.3rem;
  }
  
  .footer-logo {
    justify-content: center;
    width: 100%;
  }
  
  .footer-column {
    padding: 0.5rem 0;
  }
  
  .footer-column h4 {
    font-size: 1em;
    margin-bottom: 0.8rem;
  }
  
  .footer-column ul li {
    margin-bottom: 0.4rem;
  }
}

@media screen and (max-width: 768px) {
  /* Additional mobile-specific adjustments */
  #footer {
    padding: 1.5rem 0 0.8rem 0;
  }
  
  #footer .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .footer-content {
    gap: 1rem;
  }
  
  .footer-links {
    gap: 1rem;
  }
  
  .footer-column h4 {
    font-size: 0.95em;
    margin-bottom: 0.6rem;
  }
  
  .footer-column ul li {
    margin-bottom: 0.3rem;
  }
  
  .footer-column ul li a {
    font-size: 0.85em;
  }
  
  .footer-bottom {
    padding-top: 1rem;
    gap: 0.8rem;
  }
  
  .footer-copyright p {
    font-size: 0.8em;
  }
  
  .footer-cities {
    padding: 0.8rem 0;
  }
  
  .cities-container {
    gap: 0.8rem;
  }
  
  .city {
    font-size: 0.85em;
  }
  
  .city-separator {
    font-size: 1em;
    margin: 0 0.25rem;
  }
}

@media screen and (max-width: 480px) {
  #footer .container {
    padding-left: 0.8rem;
    padding-right: 0.8rem;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .footer-logo {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
  }
  
  .footer-logo img {
    width: 45px;
  }
  
  .company-name {
    font-size: 1.2em;
  }
  
  .company-description {
    font-size: 0.85em;
  }
  
  .footer-column {
    padding: 0.3rem 0;
  }
  
  .contact-button {
    padding: 0.5rem 1rem;
    font-size: 0.8em;
  }
}

/* Extra small mobile screens */
@media screen and (max-width: 360px) {
  #footer {
    padding: 1.2rem 0 0.6rem 0;
  }
  
  #footer .container {
    padding-left: 0.6rem;
    padding-right: 0.6rem;
  }
  
  .footer-links {
    gap: 0.6rem;
  }
  
  .footer-logo img {
    width: 40px;
  }
  
  .company-name {
    font-size: 1.1em;
  }
  
  .company-description {
    font-size: 0.8em;
  }
  
  .footer-column h4 {
    font-size: 0.9em;
    margin-bottom: 0.5rem;
  }
  
  .footer-column ul li {
    margin-bottom: 0.25rem;
  }
  
  .footer-column ul li a {
    font-size: 0.8em;
  }
  
  .footer-bottom {
    padding-top: 0.8rem;
    gap: 0.6rem;
  }
  
  .footer-copyright p {
    font-size: 0.75em;
  }
  
  .footer-cities {
    padding: 0.6rem 0;
  }
  
  .cities-container {
    gap: 0.6rem;
  }
  
  .city {
    font-size: 0.8em;
  }
  
  .city-separator {
    font-size: 0.9em;
    margin: 0 0.2rem;
  }
  
  .contact-button {
    padding: 0.4rem 0.8rem;
    font-size: 0.75em;
  }
}


/* Testimonials section with green accent */
#testimonials {
  background: linear-gradient(135deg, rgba(17, 86, 25, 0.08) 0%, rgba(26, 122, 31, 0.08) 100%);
  padding: 3rem 0;
  margin: 2rem 0;
}

/* Make testimonials stack at 1024px instead of 736px */
@media screen and (max-width: 1024px) {
  .row .col-4.col-12-mobile {
    width: 100% !important;
  }
}

/* Programs section with subtle green background */
#features {
  padding: 4rem 0;
}

/* Programs header styling */
.programs-header {
  text-align: center;
  margin-bottom: 3rem;
}

.programs-header h2 {
  font-size: 2.5em;
  margin-bottom: 1rem;
  color: var(--montshield-text-dark) !important;
}

.programs-header p {
  font-size: 1.2em;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Programs grid layout */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

/* Program card styling */
.program-card {
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(17, 86, 25, 0.1);
  border-radius: 16px;
  padding: 0;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Program card link styling */
.program-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2rem;
  text-decoration: none;
  color: inherit;
}

.program-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--montshield-green), var(--montshield-green-light));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(17, 86, 25, 0.15);
  border-color: var(--montshield-green-light);
}

.program-card:hover::before {
  transform: scaleX(1);
}

/* Program icon styling */
.program-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--montshield-green), var(--montshield-green-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  transition: all 0.3s ease;
}

.program-icon i {
  font-size: 2rem;
  color: white;
}

.program-card:hover .program-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(17, 86, 25, 0.3);
}

/* Program header styling */
.program-card header {
  margin-bottom: 1rem;
}

.program-card h3 {
  margin-bottom: 0.5rem;
  color: var(--montshield-text-dark) !important;
  text-decoration: none;
  font-size: 1.4em;
  font-weight: 600;
  transition: color 0.3s ease;
}

.program-card:hover h3 {
  color: var(--montshield-green) !important;
}

/* Program description */
.program-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* Program features tags */
.program-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: auto;
}

.feature-tag {
  background: rgba(17, 86, 25, 0.1);
  color: var(--montshield-green);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85em;
  font-weight: 500;
  border: 1px solid rgba(17, 86, 25, 0.2);
  transition: all 0.3s ease;
}

.program-card:hover .feature-tag {
  background: var(--montshield-green);
  color: white;
  border-color: var(--montshield-green);
}

/* Programs CTA styling */
.programs-cta {
  text-align: center;
  margin-top: 2rem;
}

.programs-cta .button {
  background: var(--montshield-green) !important;
  color: white !important;
  padding: 1rem 2.5rem !important;
  font-size: 1.1em;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(17, 86, 25, 0.2);
}

.programs-cta .button:hover {
  background: var(--montshield-green-light) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(17, 86, 25, 0.3);
}

/* Responsive design for programs */
@media screen and (max-width: 1024px) {
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .programs-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .program-card {
    padding: 1.5rem;
  }
  
  .program-icon {
    width: 60px;
    height: 60px;
  }
  
  .program-icon i {
    font-size: 1.5rem;
  }
  
  .programs-header h2 {
    font-size: 2em;
  }
  
  .programs-header p {
    font-size: 1em;
  }
}

/* Who We Serve section styling */
.whoweserve-header {
  text-align: center;
  margin-bottom: 3rem;
}

.whoweserve-header h2 {
  font-size: 2.5em;
  margin-bottom: 1rem;
  color: var(--montshield-text-dark) !important;
}

.whoweserve-header p {
  font-size: 1.2em;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Who We Serve grid layout */
.whoweserve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

/* Who We Serve card styling - Modern Service Card Design */
.whoweserve-card {
  background: #ffffff;
  border: none;
  border-radius: 0;
  padding: 0;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 15px rgba(17, 86, 25, 0.08);
  display: flex;
  flex-direction: column;
  border-left: 4px solid var(--montshield-green);
  min-height: 280px;
}

/* Who We Serve card link styling */
.whoweserve-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
  text-decoration: none;
  color: inherit;
  position: relative;
  z-index: 2;
}

/* Card header with icon and title */
.whoweserve-card-header {
  background: linear-gradient(135deg, var(--montshield-green), var(--montshield-green-light));
  padding: 2rem;
  color: white;
  position: relative;
  overflow: hidden;
}

.whoweserve-card-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20px;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.whoweserve-card:hover .whoweserve-card-header::before {
  transform: scale(1.5);
  opacity: 0.3;
}

.whoweserve-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.whoweserve-icon i {
  font-size: 1.8rem;
  color: white;
}

.whoweserve-card:hover .whoweserve-icon {
  transform: scale(1.1) rotate(-5deg);
  background: rgba(255, 255, 255, 0.3);
}

.whoweserve-card h3 {
  margin: 0;
  color: white !important;
  text-decoration: none;
  font-size: 1.4em;
  font-weight: 700;
  transition: all 0.3s ease;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.whoweserve-card:hover h3 {
  transform: translateX(5px);
}

/* Card body */
.whoweserve-card-body {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.whoweserve-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  font-size: 1em;
}

/* Card footer with features */
.whoweserve-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
}

.whoweserve-tag {
  background: rgba(17, 86, 25, 0.1);
  color: var(--montshield-green);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8em;
  font-weight: 600;
  border: 1px solid rgba(17, 86, 25, 0.2);
  transition: all 0.3s ease;
}

.whoweserve-card:hover .whoweserve-tag {
  background: var(--montshield-green);
  color: white;
  border-color: var(--montshield-green);
  transform: translateY(-1px);
}

/* Hover effects */
.whoweserve-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(17, 86, 25, 0.15);
  border-left-color: var(--montshield-green-light);
}

/* Responsive design for Who We Serve */
@media screen and (max-width: 1024px) {
  .whoweserve-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .whoweserve-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .whoweserve-card-header {
    padding: 1.5rem;
  }
  
  .whoweserve-card-body {
    padding: 1.5rem;
  }
  
  .whoweserve-icon {
    width: 50px;
    height: 50px;
  }
  
  .whoweserve-icon i {
    font-size: 1.5rem;
  }
  
  .whoweserve-card h3 {
    font-size: 1.2em;
  }
  
  .whoweserve-card p {
    font-size: 0.95em;
  }
  
  .whoweserve-header h2 {
    font-size: 2em;
  }
  
  .whoweserve-header p {
    font-size: 1em;
  }
}

@media screen and (max-width: 480px) {
  .whoweserve-card-header {
    padding: 1rem;
  }
  
  .whoweserve-card-body {
    padding: 1rem;
  }
  
  .whoweserve-icon {
    width: 45px;
    height: 45px;
  }
  
  .whoweserve-icon i {
    font-size: 1.3rem;
  }
  
  .whoweserve-features {
    gap: 0.3rem;
  }
  
  .whoweserve-tag {
    font-size: 0.75em;
    padding: 0.25rem 0.6rem;
  }
}

/* Banner section with simplified pattern background */
#banner {
  background: 
    /* Simple subtle grid */
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    /* Base gradient */
    linear-gradient(135deg, #115619 0%, #1a7a1f 25%, #0d3f11 50%, #115619 75%, #2d8f33 100%);
  background-size: 80px 80px, 80px 80px, 100% 100%;
  background-position: 0 0, 0 0, 0 0;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  text-align: center;
}

/* Mobile banner background adjustments */
@media screen and (max-width: 768px) {
  #banner {
    background-size: 60px 60px, 60px 60px, 100% 100%;
  }
}

@media screen and (max-width: 480px) {
  #banner {
    background-size: 40px 40px, 40px 40px, 100% 100%;
  }
}

/* Banner text styling */
#banner header h2 {
  color: var(--montshield-text-light) !important;
  font-size: 2.5em;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.3;
  font-weight: 600;
}

#banner header p {
  color: var(--montshield-text-light) !important;
  font-size: 1.2em;
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  line-height: 1.5;
  font-weight: 400;
}

#banner header p:last-child {
  margin-bottom: 0;
}

#banner header a {
  color: var(--montshield-text-light) !important;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

#banner header a:hover {
  color: var(--montshield-text-light) !important;
  border-bottom-color: var(--montshield-text-light);
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

/* Hero actions styling */
.hero-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-actions .button {
  background: rgba(255, 255, 255, 0.15) !important;
  color: var(--montshield-text-light) !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  font-weight: 500;
  padding: 0.8em 2em !important;
  border-radius: 8px;
  text-align: center;
  white-space: nowrap;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-actions .button:hover {
  background: rgba(255, 255, 255, 0.25) !important;
  border-color: rgba(255, 255, 255, 0.6) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-actions .button:active {
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Mobile banner improvements */
@media screen and (max-width: 768px) {
  #banner {
    padding: 4rem 1rem;
  }
  
  #banner header h2 {
    font-size: 2em;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }
  
  #banner header p {
    font-size: 1.1em;
    line-height: 1.4;
    margin-bottom: 2rem;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  .hero-actions .button {
    width: 100%;
    max-width: 300px;
    padding: 0.9em 1.5em !important;
    font-size: 1em;
    line-height: 1.3;
  }
}

@media screen and (max-width: 480px) {
  #banner {
    padding: 3rem 0.8rem;
  }
  
  #banner header h2 {
    font-size: 1.8em;
    line-height: 1.15;
    margin-bottom: 1.2rem;
  }
  
  #banner header p {
    font-size: 1em;
    line-height: 1.35;
    margin-bottom: 1.8rem;
    max-width: 95%;
  }
  
  .hero-actions {
    gap: 0.8rem;
    margin-top: 1.2rem;
  }
  
  .hero-actions .button {
    max-width: 280px;
    padding: 0.8em 1.2em !important;
    font-size: 0.95em;
  }
}

@media screen and (max-width: 360px) {
  #banner {
    padding: 2.5rem 0.6rem;
  }
  
  #banner header h2 {
    font-size: 1.6em;
    line-height: 1.1;
    margin-bottom: 1rem;
  }
  
  #banner header p {
    font-size: 0.95em;
    line-height: 1.3;
    margin-bottom: 1.5rem;
  }
  
  .hero-actions {
    gap: 0.6rem;
    margin-top: 1rem;
  }
  
  .hero-actions .button {
    max-width: 260px;
    padding: 0.7em 1em !important;
    font-size: 0.9em;
  }
}

/* Program cards styling */
article.col-4 h3 a {
  color: var(--montshield-text-dark) !important;
  transition: color 0.3s ease;
}
article.col-4 h3 a:hover {
  color: var(--montshield-green) !important;
}

/* Header specific styling to override template purple theme */
#header h1 {
  color: var(--montshield-text-light) !important;
}

#header h1 a {
  color: var(--montshield-text-light) !important;
}

#header h1 a:hover {
  color: var(--montshield-text-light) !important;
}

/* Navigation styling */
#nav > ul > li > a {
  color: black;
  font-weight: 500;
}

#nav > ul > li > a:hover {
  color: black;
}

#nav > ul > li.active > a {
  color: black;
}

/* Dropdown menu styling */
.dropotron li a {
  color: var(--montshield-text-dark) !important;
}

.dropotron li a:hover {
  color: var(--montshield-green) !important;
}

/* Logo styling */
.logo-mark {
  filter: none !important;
}

/* Header layout - logo above navbar */
#header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#header .inner {
  width: 100%;
  margin-bottom: 0rem;
}

#header header {
  margin-bottom: 0;
}

#header h1 {
  margin-bottom: 0;
}

#nav {
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  text-align: center;
  padding: 0.2em 0 0 0;
}

/* Navigation item padding override */
#nav > ul > li {
  margin: -5px 0.5em 0 0.5em;
  padding: 0.4em 0.85em;
}

/* Template Layout Styles */
.container {
  margin: 0 auto;
  max-width: 100%;
  width: 1400px;
}

@media screen and (max-width: 1680px) {
  .container {
    width: 1200px;
  }
}

@media screen and (max-width: 1280px) {
  .container {
    width: 100%;
  }
}

/* Row System */
.row {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  align-items: stretch;
}

.row > * {
  box-sizing: border-box;
}

.row.gtr-uniform > * > :last-child {
  margin-bottom: 0;
}

.row.aln-left {
  justify-content: flex-start;
}

.row.aln-center {
  justify-content: center;
}

.row.aln-right {
  justify-content: flex-end;
}

.row.aln-top {
  align-items: flex-start;
}

.row.aln-middle {
  align-items: center;
}

.row.aln-bottom {
  align-items: flex-end;
}

.row > .imp {
  order: -1;
}

/* Column System */
.row > .col-1 { width: 8.33333%; }
.row > .col-2 { width: 16.66667%; }
.row > .col-3 { width: 25%; }
.row > .col-4 { width: 33.33333%; }
.row > .col-5 { width: 41.66667%; }
.row > .col-6 { width: 50%; }
.row > .col-7 { width: 58.33333%; }
.row > .col-8 { width: 66.66667%; }
.row > .col-9 { width: 75%; }
.row > .col-10 { width: 83.33333%; }
.row > .col-11 { width: 91.66667%; }
.row > .col-12 { width: 100%; }

/* Row Gutter System */
.row {
  margin-top: -40px;
  margin-left: -40px;
}

.row > * {
  padding: 40px 0 0 40px;
}

.row.gtr-uniform {
  margin-top: -40px;
}

.row.gtr-uniform > * {
  padding-top: 40px;
}

.row.gtr-25 {
  margin-top: -10px;
  margin-left: -10px;
}

.row.gtr-25 > * {
  padding: 10px 0 0 10px;
}

.row.gtr-50 {
  margin-top: -20px;
  margin-left: -20px;
}

.row.gtr-50 > * {
  padding: 20px 0 0 20px;
}

/* Wrapper Styles */
.wrapper {
  background: #fff;
  margin: 0 0 0em 0;
  padding: 6em 0 6em 0;
}

.wrapper.style1 {
  background: #fff;
  background: linear-gradient(135deg, rgba(17, 86, 25, 0.03) 0%, rgba(26, 122, 31, 0.03) 100%);
}

.wrapper.style2 {
  background: linear-gradient(135deg, rgba(17, 86, 25, 0.05) 0%, rgba(26, 122, 31, 0.05) 100%);
}

/* Button Styles */
input[type="button"],
input[type="submit"],
input[type="reset"],
button,
.button {
  position: relative;
  display: inline-block;
  background: var(--montshield-green);
  color: var(--montshield-text-light);
  text-align: center;
  border-radius: 0.5em;
  text-decoration: none;
  padding: 0.65em 3em 0.65em 3em;
  border: 0;
  cursor: pointer;
  outline: 0;
  font-weight: 300;
  transition: background-color 0.35s ease-in-out, color 0.35s ease-in-out, border-bottom-color 0.35s ease-in-out;
}

input[type="button"]:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
button:hover,
.button:hover {
  background: var(--montshield-green-light);
  color: var(--montshield-text-light);
}

/* Form Styles */
form label {
  display: block;
  font-weight: 400;
  color: var(--montshield-text-dark);
  margin: 0 0 1em 0;
}

form input[type="text"],
form input[type="email"],
form input[type="password"],
form select,
form textarea {
  display: block;
  border: 0;
  background: #fafafa;
  width: 100%;
  border-radius: 0.5em;
  border: solid 1px #E5E5E5;
  padding: 1em;
  transition: background-color 0.35s ease-in-out, border-color 0.35s ease-in-out;
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form input[type="password"]:focus,
form select:focus,
form textarea:focus {
  background: #fff;
  border-color: var(--montshield-green);
}

/* Image Styles */
.image {
  position: relative;
  display: inline-block;
  border: 0;
  outline: 0;
}

.image img {
  display: block;
  width: 100%;
}

.image.fit {
  display: block;
  width: 100%;
}

.image.featured {
  display: block;
  width: 100%;
  margin: 0 0 4em 0;
}

/* List Styles */
ul {
  list-style: disc;
  padding-left: 1em;
}

ul li {
  padding-left: 0.5em;
}

ol {
  list-style: decimal;
  padding-left: 1.25em;
}

ol li {
  padding-left: 0.25em;
}

/* Actions */
ul.actions {
  margin: 3em 0 0 0;
  list-style: none;
  padding-left: 0;
}

ul.actions li {
  display: inline-block;
  margin: 0 0.75em 0 0.75em;
  padding-left: 0;
}

/* Icons */
ul.icons {
  position: relative;
  background: rgba(128, 128, 128, 0.05);
  border-radius: 4em;
  display: inline-block;
  padding: 0.35em 0.75em 0.35em 0.75em;
  font-size: 1.25em;
  cursor: default;
  list-style: none;
}

ul.icons li {
  display: inline-block;
  padding-left: 0;
}

ul.icons li a {
  display: inline-block;
  background: none;
  width: 2.5em;
  height: 2.5em;
  line-height: 2.5em;
  text-align: center;
  border-radius: 100%;
  border: 0;
  color: inherit;
}

ul.icons li a:hover {
  color: var(--montshield-green);
}

/* Dropdown Styles */
.dropotron {
  background: rgba(255, 255, 255, 0.975);
  padding: 1em 1.25em 1em 1.25em;
  line-height: 1em;
  height: auto;
  text-align: left;
  border-radius: 0.5em;
  box-shadow: 0 0.15em 0.25em 0 rgba(0, 0, 0, 0.25);
  min-width: 12em;
  margin-top: -1em;
  list-style: none;
}

.dropotron li {
  border-top: solid 1px rgba(17, 86, 25, 0.2);
  color: #5b5b5b;
  padding-left: 0;
}

.dropotron li:first-child {
  border-top: 0;
}

.dropotron li:hover {
  color: var(--montshield-green);
}

.dropotron li a, .dropotron li span {
  display: block;
  border: 0;
  padding: 0.5em 0 0.5em 0;
  transition: color 0.35s ease-in-out;
}

.dropotron.level-0 {
  margin-top: 2em;
  font-size: 0.9em;
}

.dropotron.level-0:before {
  content: '';
  position: absolute;
  left: 50%;
  top: -0.7em;
  margin-left: -0.75em;
  border-bottom: solid 0.75em rgba(255, 255, 255, 0.975);
  border-left: solid 0.75em rgba(64, 64, 64, 0);
  border-right: solid 0.75em rgba(64, 64, 64, 0);
}

/* Responsive Design */
@media screen and (max-width: 1280px) {
  .wrapper {
    padding-left: 2em;
    padding-right: 2em;
  }
}

@media screen and (max-width: 840px) {
  body, input, textarea, select {
    font-size: 13pt;
    line-height: 1.65em;
  }
  
  .wrapper {
    padding: 4em 2em 4em 2em;
  }
}

@media screen and (max-width: 736px) {
  body, input, textarea, select {
    font-size: 12.5pt;
    line-height: 1.5em;
  }
  
  .wrapper {
    padding: 3em 1em 3em 1em;
  }
  
  input[type="button"],
  input[type="submit"],
  input[type="reset"],
  button,
  .button {
    display: block;
    padding: 0;
    line-height: 3em;
    width: 100%;
  }
  
  ul.actions li {
    display: block;
    margin: 0.75em 0 0 0;
  }
  
  ul.actions li:first-child {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .testimonial-card {
    padding: 1rem;
  }
}
