:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  --heading-font: "Nunito",  sans-serif !important;
  --nav-font: "Poppins",  sans-serif !important;
}

/* 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 !important; /* Background color for the entire website, including individual sections */
  --default-color: #444444 !important; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #012970 !important; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #bb5eca !important; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff !important; /* 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 !important; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #012970 !important;  /* The default color of the main navmenu links */
  --nav-hover-color: #4154f1 !important; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff !important; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff !important; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529 !important; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #4154f1 !important; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* 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: #f9f9f9 !important;
  --surface-color: #ffffff !important;
}

.dark-background {
  --background-color: #060606 !important;
  --default-color: #ffffff !important;
  --heading-color: #ffffff !important;
  --surface-color: #252525 !important;
  --contrast-color: #ffffff !important;
}

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

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: rgba(0, 0, 0, 0.14) !important;
  box-shadow: 0px 0 30px rgba(120, 120, 120, 0.25) !important;
  height: 100% !important;
  padding: 60px 30px !important;
  text-align: center !important;
  transition: 0.3s !important;
  border-radius: 5px !important;
}

.services .service-item .icon {
  font-size: 36px !important;
  padding: 20px 20px !important;
  border-radius: 4px !important;
  position: relative !important;
  margin-bottom: 25px !important;
  display: inline-block !important;
  line-height: 0 !important;
  transition: 0.3s !important;
}

.services .service-item h3 {
  font-size: 24px !important;
  font-weight: 700 !important;
  color: #fff !important;
}

.services .service-item p{
  color: #fff !important;
}

.services .service-item .read-more {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  padding: 8px 20px !important;
}

.services .service-item .read-more i {
  line-height: 0 !important;
  margin-left: 5px !important;
  font-size: 18px !important;
}

.services .service-item.item-cyan {
  border-bottom: 3px solid #0dcaf0 !important;
}

.services .service-item.item-cyan .icon {
  color: #0dcaf0 !important;
  background: rgba(13, 202, 240, 0.1) !important;
}

.services .service-item.item-cyan .read-more {
  color: #0dcaf0 !important;
}

.services .service-item.item-cyan:hover {
  background: #0dcaf0 !important;
}

.services .service-item.item-orange {
  border-bottom: 3px solid #fd7e14 !important;
}

.services .service-item.item-orange .icon {
  color: #fd7e14 !important;
  background: rgba(253, 126, 20, 0.1) !important;
}

.services .service-item.item-orange .read-more {
  color: #fd7e14 !important;
}

.services .service-item.item-orange:hover {
  background: #fd7e14 !important;
}

.services .service-item.item-teal {
  border-bottom: 3px solid #20c997 !important;
}

.services .service-item.item-teal .icon {
  color: #20c997 !important;
  background: rgba(32, 201, 151, 0.1) !important;
}

.services .service-item.item-teal .read-more {
  color: #20c997 !important;
}

.services .service-item.item-teal:hover {
  background: #20c997 !important;
}

.services .service-item.item-red {
  border-bottom: 3px solid #df1529 !important;
}

.services .service-item.item-red .icon {
  color: #df1529 !important;
  background: rgba(223, 21, 4, 0.1) !important;
}

.services .service-item.item-red .read-more {
  color: #df1529 !important;
}

.services .service-item.item-red:hover {
  background: #df1529 !important;
}

.services .service-item.item-indigo {
  border-bottom: 3px solid #6610f2 !important;
}

.services .service-item.item-indigo .icon {
  color: #6610f2 !important;
  background: rgba(102, 16, 242, 0.1) !important;
}

.services .service-item.item-indigo .read-more {
  color: #6610f2 !important;
}

.services .service-item.item-indigo:hover {
  background: #6610f2 !important;
}

.services .service-item.item-pink {
  border-bottom: 3px solid #f3268c !important;
}

.services .service-item.item-pink .icon {
  color: #f3268c !important;
  background: rgba(243, 38, 140, 0.1) !important;
}

.services .service-item.item-pink .read-more {
  color: #f3268c !important;
}

.services .service-item.item-pink:hover {
  background: #f3268c !important;
}

.services .service-item:hover h3,
.services .service-item:hover p,
.services .service-item:hover .read-more {
  color: #fff !important;
}

.services .service-item:hover .icon {
  background: #fff !important;
}


/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: #000 !important;
  box-shadow: 0px 0 20px rgba(120, 120, 120, 0.25) !important;
  box-sizing: content-box !important;
  padding: 30px !important;
  margin: 40px 30px !important;
  min-height: 320px !important;
  display: flex !important;
  flex-direction: column !important;
  text-align: center !important;
  transition: 0.3s !important;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px !important;
}

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

.testimonials .testimonial-item .testimonial-img {
  width: 90px !important;
  border-radius: 50% !important;
  border: 4px solid var(--background-color) !important;
  margin: 0 auto !important;
}

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

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

.testimonials .testimonial-item p {
  font-style: italic !important;
  margin: 0 auto 15px auto !important;
  color: #fff !important;
}

.testimonials .swiper-wrapper {
  height: auto !important;
}

.testimonials .swiper-pagination {
  margin-top: 20px !important;
  position: relative !important;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%) !important;
  opacity: 1 !important;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color) !important;
}

.testimonials .swiper-slide {
  opacity: 0.3 !important;
}

@media (max-width: 1199px) {
  .testimonials .swiper-slide-active {
    opacity: 1 !important;
  }

  .testimonials .swiper-pagination {
    margin-top: 0 !important;
  }

  .testimonials .testimonial-item {
    margin: 40px 20px !important;
  }
}

@media (min-width: 1200px) {
  .testimonials .swiper-slide-next {
    opacity: 1 !important;
    transform: scale(1.12) !important;
  }
}