/* ------------- Custumozided Style For PMP 
# Make sure to import style-homepages-default.css first
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #001973; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #fe9900; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --light-accent-color: #fed392;
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */
.light-background {
  --background-color: #f7f9fc;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #19335c;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #19335c;
  --contrast-color: #ffffff;
}

.accent-background {
  --background-color: #fe9900;
  --default-color: #212529;
  --heading-color: var(--default-color);
  --accent-color: #ffffff;
  --surface-color: #fff;
  --contrast-color: #212529;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# Global
--------------------------------------------------------------*/

p,
ul li,
ol li {
  font-size: larger;
}

section,
.section {
  padding: 0;
}

.section-title {
  margin: 0;
  padding-top: 30px;
  padding-bottom: 0;
}

/*--------------------------------------------------------------
# Custom Hero
--------------------------------------------------------------*/

.hero {
  padding: 80px 0 0 0;
}

/*--------------------------------------------------------------
# About the coas section
--------------------------------------------------------------*/

.img-about {
  max-width: 84% !important;
  height: auto;
}

.img-certification {
  width: 100% !important;
  max-width: 150px !important;
  height: auto;
}

@media (max-width: 1399.98px) {

  .img-certification {
    max-width: 100px !important;
    height: auto;
  }

}

@media (max-width: 1199.98px) {

  .hide-991-1199px {
    display: none !important;
  }

}

@media (max-width: 991.98px) {

  .img-about {
    max-width: 100% !important;
  }

  .img-certification {
    max-width: 300px !important;
    height: auto !important;
  }

  .hide-991-1199px {
    display: flex !important;
  }

}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.08);
  padding: 30px;
  position: relative;
  height: 100%;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px 0 0 0;
  padding: 0;
  line-height: 1.8;
}