@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Source+Serif+Pro:wght@600;700&display=swap");
@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
body {
  font-family: "Lexend", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Source Serif Pro", "Lexend", serif;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

h1 {
  font-size: clamp(1.5rem, 2vw + 1rem, 2.188rem);
}

h2 {
  font-size: clamp(1.25rem, 1.5vw + 0.75rem, 1.875rem);
  margin: 0.938rem 0 0.625rem;
}

h3 {
  font-size: clamp(1.125rem, 1.25vw + 0.75rem, 1.563rem);
}

h4 {
  font-size: clamp(1rem, 1vw + 0.5rem, 1.25rem);
}

h5 {
  font-size: clamp(0.875rem, 0.75vw + 0.5rem, 1rem);
}

a {
  color: #627f9d;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover, a:focus, a:active {
  color: #000000;
  text-decoration: none;
}

.btn-primary {
  background: #627f9d;
  border: none;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background: #000000;
  border: none;
}

.btn-secondary {
  background: #657fa4;
  border: none;
}
.btn-secondary:hover, .btn-secondary:focus, .btn-secondary:active {
  background: #000000;
  border: none;
}

.bgBlack {
  background: #000000 !important;
  color: #ffffff !important;
}

.bglBlack {
  background: #333333 !important;
  color: #ffffff !important;
}

.white {
  color: #ffffff !important;
}

.bgWhite {
  background: #ffffff !important;
  color: #000000 !important;
}

.bgBlue {
  background: #627f9d !important;
  color: #ffffff !important;
}

.bgGreen {
  background: #657fa4 !important;
  color: #ffffff !important;
}

.bgGrey {
  background: #91979C !important;
  color: #ffffff !important;
}

.maxWidth {
  max-width: 1200px;
  margin-left: auto !important;
  margin-right: auto !important;
}

.maxWidthBlocks {
  max-width: 600px !important;
}

#back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  border: none;
  border-radius: 50%;
  padding: 0;
  width: 50px;
  height: 50px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  display: none;
  transition: all 0.3s ease;
}

#back-to-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.fade-in {
  animation: fade-in 0.5s ease-in;
}

.lazy {
  opacity: 0;
  transition: opacity 0.3s;
}

@media (max-width: 768px) {
  #back-to-top {
    bottom: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
  }
}
.rev_slider_wrapper {
  background: #627f9d !important;
}

/**
    * Navigation Styles
*/
.custom-logo-link img {
  max-height: 60px;
  width: auto;
}

#topBar {
  background: #627f9d;
  color: white;
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  #topBar .fa-solid {
    font-size: 1.5rem;
  }
}

.site-header {
  width: 100%;
}
.site-header.sticky {
  position: fixed;
  top: 0;
}
.site-header.sticky .custom-logo-link img {
  max-height: 50px;
  width: auto;
  transition: max-height 0.3s ease;
  -webkit-transition: max-height 0.3s ease;
  -moz-transition: max-height 0.3s ease;
  -o-transition: max-height 0.3s ease;
}

.navbar-nav .nav-link {
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  position: relative;
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link:focus, .navbar-nav .nav-link:active {
  color: #000000 !important;
  text-decoration: none;
}
.navbar-nav .nav-link:hover:after, .navbar-nav .nav-link:focus:after, .navbar-nav .nav-link:active:after {
  width: 100%;
}
.navbar-nav .nav-link:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #657fa4;
  transition: width 0.3s ease;
  -webkit-transition: width 0.3s ease;
  -moz-transition: width 0.3s ease;
  -o-transition: width 0.3s ease;
}
.navbar-nav .current-menu-item > .nav-link {
  color: #000000 !important;
}
.navbar-nav .current-menu-item > .nav-link:after {
  width: 100%;
}

/* Navigation Styles */
.navbar-toggler {
  padding: 10px;
}
.navbar-toggler:focus {
  box-shadow: none;
}

.dropdown-toggle:after {
  content: "";
  display: none;
}

li.dropdown {
  /** Dropdown Menus action **/
}
li.dropdown .fas {
  display: none;
}
li.dropdown .dropdown-menu {
  border: none;
  border-radius: 0;
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
li.dropdown .dropdown-menu li {
  border-bottom: 1px solid #000000;
  margin-left: 10px;
}
li.dropdown .dropdown-menu li:last-child {
  border-bottom: none;
}
li.dropdown .dropdown-menu .nav-link:after {
  display: none;
}
li.dropdown:hover > .dropdown-menu {
  display: flex;
  flex-direction: column;
}
li.dropdown .dropdown-menu {
  display: none;
}
li.dropdown .dropdown-menu.show {
  display: flex;
}

@media (prefers-reduced-motion: no-preference) {
  .fadeIn,
  .fadeUp,
  .fadeDown,
  .fadeLeft,
  .fadeRight,
  .zoomIn,
  .zoomOut,
  .stagger-fade > * {
    opacity: 0;
    visibility: hidden;
    will-change: transform, opacity, visibility;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fadeIn,
  .fadeUp,
  .fadeDown,
  .fadeLeft,
  .fadeRight,
  .zoomIn,
  .zoomOut,
  .stagger-fade > * {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    transition: none !important;
  }
}
.fadeIn,
.fadeUp,
.fadeDown,
.fadeLeft,
.fadeRight,
.zoomIn,
.zoomOut,
.stagger-fade > * {
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

html.no-gsap .fadeIn,
html.no-gsap .fadeUp,
html.no-gsap .fadeDown,
html.no-gsap .fadeLeft,
html.no-gsap .fadeRight,
html.no-gsap .zoomIn,
html.no-gsap .zoomOut,
html.no-gsap .stagger-fade > * {
  animation: fallback-fade-in 0.01s 1.5s forwards;
}

@keyframes fallback-fade-in {
  to {
    opacity: 1;
    visibility: visible;
  }
}
html.no-gsap .delay-1 {
  animation-delay: 1.6s !important;
}

html.no-gsap .delay-2 {
  animation-delay: 1.7s !important;
}

html.no-gsap .delay-3 {
  animation-delay: 1.8s !important;
}

html.no-gsap .delay-4 {
  animation-delay: 1.9s !important;
}

html.no-gsap .delay-5 {
  animation-delay: 2s !important;
}

html.no-gsap .duration-fast {
  transition-duration: 0.3s;
}

html.no-gsap .duration-slow {
  transition-duration: 1.2s;
}

.ease-bounce {
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.ease-elastic {
  transition-timing-function: cubic-bezier(0.5, 0.1, 0.1, 1.5);
}

#featuredImage .carousel-caption, .carousel .carousel-caption {
  background-color: rgba(98, 127, 157, 0.8);
  bottom: 0;
  right: auto;
  padding: inherit;
  left: 0;
  margin: auto;
  padding: 25px;
  width: 100%;
}
#featuredImage .carousel-caption h1, #featuredImage .carousel-caption h2, #featuredImage .carousel-caption h3, #featuredImage .carousel-caption h4, #featuredImage .carousel-caption h5, #featuredImage .carousel-caption h6, #featuredImage .carousel-caption a, .carousel .carousel-caption h1, .carousel .carousel-caption h2, .carousel .carousel-caption h3, .carousel .carousel-caption h4, .carousel .carousel-caption h5, .carousel .carousel-caption h6, .carousel .carousel-caption a {
  color: #ffffff;
  font-size: clamp(1.5rem, 2vw + 1rem, 2.188rem);
}
#featuredImage .carousel-content p, .carousel .carousel-content p {
  font-size: clamp(1rem, 1vw + 0.5rem, 1.25rem);
}
@media (max-width: 768px) {
  #featuredImage .btn, .carousel .btn {
    width: auto;
  }
  #featuredImage p, .carousel p {
    display: none;
  }
}
#featuredImage .carousel-item, .carousel .carousel-item {
  transition: opacity 0.4s ease, transform 0.4s ease;
  min-height: 300px;
  max-height: 500px;
}
@media (min-width: 768px) {
  #featuredImage .carousel-item, .carousel .carousel-item {
    min-height: 400px;
  }
}
@media (min-width: 992px) {
  #featuredImage .carousel-item, .carousel .carousel-item {
    min-height: 85vh;
  }
}
#featuredImage .carousel-item img, .carousel .carousel-item img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  min-height: inherit;
}

#featuredImage .carousel-item {
  min-height: 35vh;
}

.footer-widgets {
  margin-bottom: 0 !important;
}
.footer-widgets .widget {
  margin-bottom: 15px !important;
}
.footer-widgets .widget p {
  margin-bottom: 5px !important;
}

.site-footer {
  margin-top: 0 !important;
}

.site-info {
  padding-top: 10px !important;
}

.copyrights {
  font-size: 0.9rem;
  color: #91979C;
}
.copyrights a {
  color: #ffffff;
}
.copyrights a:hover {
  color: #91979C;
}

/**
 * Content 
 **/
/**
 * Full width pages
 **/
.fullWidth {
  max-width: 100% !important;
}
.fullWidth .wp-block-columns {
  padding: 0 25px;
}

.wp-block-image {
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
}
.wp-block-image a {
  background-color: rgba(0, 0, 0, 0);
  display: block;
  height: 100%;
  overflow: hidden;
}
.wp-block-image a:hover {
  background-color: rgba(0, 0, 0, 0.5);
}
.wp-block-image a:hover img {
  transform: scale(1.05);
}
.wp-block-image:hover .wp-element-caption {
  height: 80px;
  padding: 0.5rem 0.75rem;
}
.wp-block-image img {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  max-width: 100%;
  height: auto;
  border-radius: 0.25rem;
  position: relative;
  z-index: -1;
}
.wp-block-image .wp-element-caption {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  background-color: rgba(98, 127, 157, 0.8);
  bottom: 0;
  height: 50px;
  margin: 0;
  width: 100%;
  padding: 0;
  font-size: 1.15rem;
  color: #ffffff;
  position: absolute;
  text-align: center;
}

#primary {
  margin-top: 15px;
}

/**
 * Contact Form 7 Customizations
 **/
/**
 * Testimonials Styles
 */
.risbootstrap-testimonial-slider {
  position: relative;
  margin-bottom: 2rem;
}
.risbootstrap-testimonial-slider .testimonial-slides {
  position: relative;
  overflow: hidden;
  border-radius: 0.375rem;
  background-color: #f8f9fa;
  min-height: 250px;
  padding: 2rem;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}
.risbootstrap-testimonial-slider .testimonial-slides .testimonial-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 200px;
  transition: all 0.6s easeInOut;
  -webkit-transition: all 0.6s easeInOut;
  -moz-transition: all 0.6s easeInOut;
  -o-transition: all 0.6s easeInOut;
}
.risbootstrap-testimonial-slider .testimonial-slides .testimonial-slide:not(.active) {
  display: none;
}
.risbootstrap-testimonial-slider .testimonial-slides .testimonial-slide .testimonial-image {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
  overflow: hidden;
}
.risbootstrap-testimonial-slider .testimonial-slides .testimonial-slide .testimonial-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.risbootstrap-testimonial-slider .testimonial-slides .testimonial-slide .testimonial-content .testimonial-title {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}
.risbootstrap-testimonial-slider .testimonial-slides .testimonial-slide .testimonial-content .testimonial-rating {
  color: #ffc107;
  margin-bottom: 1rem;
}
.risbootstrap-testimonial-slider .testimonial-slides .testimonial-slide .testimonial-content .testimonial-rating .fa-star {
  margin: 0 0.125rem;
}
.risbootstrap-testimonial-slider .testimonial-slides .testimonial-slide .testimonial-content .testimonial-text {
  font-style: italic;
  margin-bottom: 1rem;
}
.risbootstrap-testimonial-slider .testimonial-slides .testimonial-slide .testimonial-content .testimonial-text::before, .risbootstrap-testimonial-slider .testimonial-slides .testimonial-slide .testimonial-content .testimonial-text::after {
  content: '"';
  font-size: 1.5rem;
  color: #0E2E3E;
}
.risbootstrap-testimonial-slider .testimonial-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}
.risbootstrap-testimonial-slider .testimonial-navigation .prev-testimonial,
.risbootstrap-testimonial-slider .testimonial-navigation .next-testimonial {
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: #0E2E3E;
  font-size: 1.25rem;
  transition: color 0.2s ease;
}
.risbootstrap-testimonial-slider .testimonial-navigation .prev-testimonial:hover,
.risbootstrap-testimonial-slider .testimonial-navigation .next-testimonial:hover {
  color: #091c27;
}
.risbootstrap-testimonial-slider .testimonial-navigation .testimonial-indicators {
  display: flex;
  margin: 0 0.5rem;
}
.risbootstrap-testimonial-slider .testimonial-navigation .testimonial-indicators .testimonial-indicator {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: #ced4da;
  margin: 0 0.25rem;
  padding: 0;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.risbootstrap-testimonial-slider .testimonial-navigation .testimonial-indicators .testimonial-indicator.active {
  background-color: #0E2E3E;
}
.risbootstrap-testimonial-slider .testimonial-navigation .testimonial-indicators .testimonial-indicator:hover {
  background-color: #6c757d;
}

.risbootstrap-sortable-testimonials .testimonial-item .card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.risbootstrap-sortable-testimonials .testimonial-item .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.risbootstrap-sortable-testimonials .testimonial-item .card .testimonial-image {
  max-width: 100px;
  margin: 0 auto;
}
.risbootstrap-sortable-testimonials .testimonial-item .card .testimonial-rating {
  font-size: 1rem;
}
.risbootstrap-sortable-testimonials .testimonial-item .card .testimonial-text {
  font-style: italic;
}
.risbootstrap-sortable-testimonials .testimonial-item .card .testimonial-text::before, .risbootstrap-sortable-testimonials .testimonial-item .card .testimonial-text::after {
  content: '"';
  color: #0E2E3E;
}

.risbootstrap-testimonial-form .rating-stars label {
  transition: color 0.2s ease;
}

@media (max-width: 768px) {
  .risbootstrap-testimonial-slider .testimonial-slides {
    padding: 1.5rem;
  }
}
.home .site-main,
.page-template-default .site-main {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.home #page,
.page-template-default #page {
  overflow-x: hidden;
}

.navbar.scrolled {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background-color: #ffffff !important;
}

.navbar.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1030;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Source Serif Pro", "Lexend", Georgia, serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

body {
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.btn {
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background: #627f9d;
  color: white;
}
.btn-primary:hover, .btn-primary:focus {
  background: #3498db;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(14, 46, 62, 0.3);
}

.btn-outline-primary {
  border: 2px solid #627f9d;
  color: #627f9d;
  background: transparent;
}
.btn-outline-primary:hover, .btn-outline-primary:focus {
  background: #627f9d;
  color: white;
  transform: translateY(-2px);
}

.btn-light {
  background: white;
  color: #627f9d;
}
.btn-light:hover, .btn-light:focus {
  background: #f8f9fa;
  color: #627f9d;
  transform: translateY(-2px);
}

.btn-outline-light {
  border: 2px solid white;
  color: white;
  background: transparent;
}
.btn-outline-light:hover, .btn-outline-light:focus {
  background: white;
  color: #627f9d;
  transform: translateY(-2px);
}

.hero-section {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #627f9d;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #627f9d 0%, #3498db 100%);
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.hero-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%), linear-gradient(-45deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%), linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.03) 75%), linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.03) 75%);
  background-size: 60px 60px;
  background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(14, 46, 62, 0.7);
  z-index: 2;
}

.hero-section .container {
  position: relative;
  z-index: 3;
}

.min-vh-75 {
  min-height: 75vh;
}

.hero-headline {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subheadline {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  font-weight: 300;
}

.hero-cta {
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .hero-headline {
    font-size: 2.5rem;
  }
  .hero-subheadline {
    font-size: 1.2rem;
  }
  .hero-section {
    min-height: 60vh;
  }
  .min-vh-75 {
    min-height: 60vh;
  }
}
.differentiation-banner {
  border-bottom: 1px solid #e9ecef;
}

.icon-box {
  padding: 1.5rem;
}
.icon-box:hover .icon-circle {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 24px rgba(14, 46, 62, 0.3);
}

.icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #627f9d 0%, #3498db 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: white;
  transition: all 0.3s ease;
}

.specialization-tag {
  font-size: 1.2rem;
  color: #657fa4;
  margin: 0;
  padding: 1rem 2rem;
  background: rgba(14, 46, 62, 0.05);
  border-radius: 8px;
  display: inline-block;
}

.section-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #627f9d;
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.25rem;
  color: #666666;
  margin-bottom: 2rem;
}

.about-intro-section {
  background: white;
}

.about-image-wrapper {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.about-image-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #91979C;
  padding: 2rem;
  text-align: center;
}

.service-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.service-card-image {
  position: relative;
  overflow: hidden;
}
.service-card-image .image-placeholder {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #627f9d 0%, #3498db 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.service-card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #627f9d;
  margin-bottom: 1rem;
}

.service-card-text {
  color: #666666;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}
.service-features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #666666;
}
.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #657fa4;
  font-weight: bold;
}

.stats-section {
  background: linear-gradient(135deg, #627f9d 0%, #3498db 100%);
  color: white;
}

.stat-box {
  padding: 2rem;
}

.stat-number {
  font-size: 4rem;
  font-weight: 700;
  font-family: "Source Serif Pro", "Lexend", Georgia, serif;
  margin-bottom: 0.5rem;
  color: white;
}
.stat-number::after {
  content: "+";
  font-size: 3rem;
  margin-left: 0.25rem;
}

.stat-box:last-child .stat-number::after {
  content: "";
}

.stat-label {
  font-size: 1.2rem;
  opacity: 0.9;
  font-weight: 500;
}

.cta-section {
  position: relative;
  overflow: hidden;
  background: #657fa4;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #657fa4 0%, #627f9d 100%);
  z-index: 1;
}
.cta-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%), linear-gradient(-45deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%), linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.05) 75%), linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.05) 75%);
  background-size: 60px 60px;
  background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.contact-info-box,
.contact-form-box {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #627f9d;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-details {
  flex: 1;
}
.contact-details a {
  color: #627f9d;
  font-weight: 500;
}
.contact-details a:hover {
  color: #657fa4;
}

.emergency-contact {
  background: linear-gradient(135deg, #657fa4 0%, #627f9d 100%);
  color: white;
  border-radius: 8px;
  text-align: center;
}
.emergency-contact a {
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: underline;
}
.emergency-contact a:hover {
  opacity: 0.8;
}

.form-label {
  font-weight: 600;
  color: #333333;
  margin-bottom: 0.5rem;
}

.form-control,
.form-select {
  border: 2px solid #e9ecef;
  border-radius: 4px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}
.form-control:focus,
.form-select:focus {
  border-color: #627f9d;
  box-shadow: 0 0 0 3px rgba(14, 46, 62, 0.1);
}

.wpcf7-form .form-control, .wpcf7-form .form-select {
  border: 2px solid #e9ecef;
  border-radius: 4px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
  width: 100%;
}
.wpcf7-form .form-control:focus, .wpcf7-form .form-select:focus {
  border-color: #627f9d;
  box-shadow: 0 0 0 3px rgba(14, 46, 62, 0.1);
  outline: none;
}
.wpcf7-form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.wpcf7-form .wpcf7-not-valid-tip {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}
.wpcf7-form .wpcf7-response-output {
  margin: 1rem 0;
  padding: 1rem;
  border-radius: 4px;
  border: 2px solid transparent;
}
.wpcf7-form .wpcf7-response-output.wpcf7-validation-errors {
  border-color: #dc3545;
  background: #f8d7da;
  color: #721c24;
}
.wpcf7-form .wpcf7-response-output.wpcf7-mail-sent-ok {
  border-color: #28a745;
  background: #d4edda;
  color: #155724;
}
.wpcf7-form .wpcf7-spinner {
  margin: 0 1rem;
}

@media (max-width: 992px) {
  .section-heading {
    font-size: 2rem;
  }
  .cta-heading {
    font-size: 2rem;
  }
  .stat-number {
    font-size: 3rem;
  }
}
@media (max-width: 768px) {
  .section-heading {
    font-size: 1.75rem;
  }
  .hero-headline {
    font-size: 2rem;
  }
  .btn {
    padding: 0.6rem 1.5rem;
    width: 100%;
    margin-bottom: 1rem;
  }
  .btn-lg {
    padding: 0.75rem 2rem;
  }
}
.text-white-50 {
  color: rgba(255, 255, 255, 0.6) !important;
}

.border-secondary {
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.top-utility-bar {
  background: rgb(88.2, 114.3, 141.3);
  color: #ffffff;
  padding: 8px 0;
  position: relative;
  z-index: 1031;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.top-utility-bar.hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
.top-utility-bar .top-utility-items {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .top-utility-bar .top-utility-items {
    gap: 15px;
  }
}
.top-utility-bar .utility-item {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s ease;
  -webkit-transition: color 0.2s ease;
  -moz-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
}
.top-utility-bar .utility-item:hover {
  color: #ffcc00;
}
.top-utility-bar .utility-item i {
  font-size: 14px;
}
@media (max-width: 768px) {
  .top-utility-bar .utility-item span {
    display: none;
  }
}
.top-utility-bar .utility-search i {
  font-size: 16px;
}

.mainHeader.has-top-bar.fixed-top {
  transition: top 0.3s ease-in-out;
  -webkit-transition: top 0.3s ease-in-out;
  -moz-transition: top 0.3s ease-in-out;
  -o-transition: top 0.3s ease-in-out;
}
.mainHeader.has-top-bar.fixed-top.top-bar-hidden {
  top: 0;
}

.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(98, 127, 157, 0.95);
  z-index: 1040;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.search-overlay.active {
  opacity: 1;
  visibility: visible;
}
.search-overlay .search-overlay-content {
  width: 100%;
  max-width: 600px;
  padding: 20px;
  position: relative;
}
.search-overlay .search-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 30px;
  cursor: pointer;
  transition: color 0.2s ease;
  -webkit-transition: color 0.2s ease;
  -moz-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
}
.search-overlay .search-close:hover {
  color: #ffcc00;
}
.search-overlay .search-form {
  display: flex;
}
.search-overlay .search-form .search-field {
  flex: 1;
  padding: 15px 20px;
  font-size: 18px;
  border: none;
  border-radius: 4px 0 0 4px;
  outline: none;
}
.search-overlay .search-form .search-submit {
  padding: 15px 25px;
  background: #ffcc00;
  color: #627f9d;
  border: none;
  border-radius: 0 4px 4px 0;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s ease;
  -webkit-transition: background 0.2s ease;
  -moz-transition: background 0.2s ease;
  -o-transition: background 0.2s ease;
}
.search-overlay .search-form .search-submit:hover {
  background: rgb(204, 163.2, 0);
}

.has-top-bar {
  margin-top: 38px !important;
}