.elementor-kit-783{--e-global-color-primary:#071A3A;--e-global-color-secondary:#D8AA57;--e-global-color-text:#FFFFFF;--e-global-color-accent:#C4C4C4;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;background-color:#FFFFFF;font-family:"Montserrat", Sans-serif;}.elementor-kit-783 e-page-transition{background-color:#FFBC7D;}.elementor-kit-783 a{font-family:"Montserrat", Sans-serif;}.elementor-kit-783 h1{font-family:"Montserrat", Sans-serif;}.elementor-kit-783 h2{font-family:"Montserrat", Sans-serif;}.elementor-kit-783 h3{font-family:"Montserrat", Sans-serif;}.elementor-kit-783 h4{font-family:"Montserrat", Sans-serif;}.elementor-kit-783 h5{font-family:"Montserrat", Sans-serif;}.elementor-kit-783 h6{font-family:"Montserrat", Sans-serif;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* =========================================
   GLOBAL SERVICES SECTION STYLES
   Applies to ALL service pages
   ========================================= */

/* Font consistency */
.service-box-container,
.service-box,
.service-box h3,
.service-box p,
.service-box button,
.service-box a {
  font-family: 'Montserrat', sans-serif;
}

/* Grid layout */
.service-box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Tablet: force 2 columns */
@media (min-width: 769px) and (max-width: 1024px) {
  .service-box-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Service box base */
.service-box {
  background-color: #21765F;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 300px;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}

/* Expanded state */
.service-box.expanded {
  height: auto;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Headings */
.service-box h3 {
  font-size: 1.1em;
  color: #ffffff;
  margin-bottom: 5px;
  line-height: 1.3;
  min-height: 60px;
}

/* Brief description */
.service-box .brief-description {
  font-size: 1em;
  color: #d1d1d1;
  margin-bottom: 20px;
  max-height: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-grow: 1;
}

/* Expanded brief */
.service-box.expanded .brief-description {
  max-height: none;
  overflow: visible;
}

/* Full details (hidden by default) */
.service-box .full-details {
  font-size: 1em;
  color: #d1d1d1;
  margin-top: 20px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}

/* Full details visible */
.service-box.expanded .full-details {
  max-height: 500px;
  opacity: 1;
  margin-bottom: 20px;
}

/* Buttons layout */
.service-box .button-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

/* Common button styles */
.service-box button,
.service-box .cta-btn {
  padding: 12px 25px;
  border-radius: 5px;
  font-size: 1em;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  border: none;
  color: #ffffff;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

/* Learn More button */
.service-box .learn-more-btn {
  background-color: #DEA762;
}

.service-box .learn-more-btn:hover {
  background-color: #5a966b;
  transform: translateY(-2px);
}

/* CTA button */
.service-box .cta-btn {
  background-color: #dea762;
  display: none;
}

.service-box.expanded .cta-btn {
  display: inline-block;
}

.service-box .cta-btn:hover {
  background-color: #c79155;
  transform: translateY(-2px);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .service-box-container {
    grid-template-columns: 1fr;
    padding: 20px 15px;
  }

  .service-box {
    height: auto;
  }
}

@media (max-width: 480px) {
  .service-box {
    padding: 20px;
  }

  .service-box h3 {
    font-size: 15px;
    min-height: unset;
  }

  .service-box .brief-description,
  .service-box .full-details {
    font-size: 13px;
  }

  .service-box button,
  .service-box .cta-btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}/* End custom CSS */