:root {
  --default-font: "Open Sans", 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";
  --heading-font: "Jost", sans-serif;
  --nav-font: "Poppins", sans-serif;
}

/* 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: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #8d8d8d; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #f5f5dc; /* 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; /* 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: #333333; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --font-style-color: #5e658d;
  --number-style-color: #f39c12;
  --light: #fdf5eb;
}

/* 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: #ffffff; /* The default color of the main navmenu links */
  --nav-hover-color: #47b2e4; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #47b2e4; /* 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: #f5f6f8;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #37517e;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #4668a2;
  --contrast-color: #ffffff;
}

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

/*******************************/
/********* General CSS *********/
/*******************************/
html,
body {
  overflow-x: hidden;
}
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/*******************************/
/********* Footer CSS **********/
/*******************************/
.footer {
  position: relative;
  padding-top: 90px;
  background: rgba(0, 0, 0, 0.04);
}

.footer .footer-contact,
.footer .footer-link,
.footer .footer-newsletter {
  position: relative;
  margin-bottom: 45px;
  color: #454545;
}

.footer .footer-contact h2,
.footer .footer-link h2,
.footer .footer-newsletter h2 {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 10px;
  font-size: 22px;
  font-weight: 700;
  color: #add8e6;
}

.footer .footer-contact h2::after,
.footer .footer-link h2::after,
.footer .footer-newsletter h2::after {
  position: absolute;
  content: "";
  width: 45px;
  height: 2px;
  bottom: 0;
  left: 0;
  background: #719a0a;
}

.footer .footer-link a {
  display: block;
  margin-bottom: 10px;
  color: #454545;
  transition: 0.3s;
}

.footer .footer-link a::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
  color: #add8e6;
}

.footer .footer-link a:hover {
  color: #add8e6;
  letter-spacing: 1px;
}

.footer .footer-contact p i {
  width: 25px;
  color: #add8e6;
}

.footer .footer-social {
  position: relative;
  margin-top: 20px;
  display: flex;
}

.footer .footer-social a {
  display: inline-block;
  margin-right: 5px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #add8e6;
  border-radius: 35px;
  font-size: 16px;
  color: #ffffff;
}

.footer .footer-social a:hover {
  background: #719a0a;
}

.footer .footer-social a:last-child {
  margin: 0;
}

.footer .footer-newsletter .form {
  position: relative;
  width: 100%;
}

.footer .footer-newsletter input {
  height: 60px;
  background: transparent;
  border: 1px solid #add8e6;
  border-radius: 5px;
}

.footer .footer-newsletter .btn {
  position: absolute;
  top: 8px;
  right: 8px;
  height: 44px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 700;
}

.footer .copyright {
  position: relative;
  width: 100%;
  padding: 30px 0;
  text-align: center;
  background: #ffffff;
}

.footer .copyright p {
  margin: 0;
  display: inline-block;
  color: #454545;
}

.footer .copyright p a {
  color: #add8e6;
}

.footer .copyright p a:hover {
  color: #719a0a;
}
/*******************************/
/********* Gallery CSS **********/
/*******************************/
.gallery img {
  width: 100%;
  height: 350px;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}
.gallery img:hover {
  transform: scale(1.05);
}

/*******************************/
/********* Profile CSS **********/
/*******************************/

.rounded-circle {
  border-radius: 50%;
}
/*******************************/
/********* Nav bar **********/
/*******************************/
/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #666666;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}
.header.scrolled {
  --background-color: rgba(102, 102, 102, 0.9);
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}
/*----------------------------*\
	dropdown
\*----------------------------*/

.navmenu li.has-dropdown {
  position: relative;
}

.navmenu li.has-dropdown > a:after {
  font-family: "FontAwesome";
  content: "\f0d7";
  margin-left: 5px;
}

.navmenu li.has-dropdown > .dropdown {
  position: absolute;
  left: 0;
  width: 200px;
  text-align: left;
  z-index: 60;
  -webkit-transform: translateY(10px);
  -ms-transform: translateY(10px);
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

/* Remove hover trigger */

/* Add active class for click trigger */
.navmenu li.has-dropdown.active > .dropdown {
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
  visibility: visible;
}

.navmenu li.has-dropdown > .dropdown .dropdown-body {
  background-color: #888888;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  border-top: 2px solid #444444;
}
.dropdown .dropdown-list {
  display: block;
}

.dropdown .dropdown-list li {
  border-bottom: 1px solid #e8eaed;
}

.dropdown .dropdown-list li a {
  display: block;
  padding: 10px;
  line-height: 20px;
}

.dropdown .dropdown-heading {
  text-transform: uppercase;
  font-size: 14px;
  margin-top: 0px;
  margin-bottom: 10px;
  line-height: 30px;
}

/* Desktop Navigation */
@media (min-width: 1200px) {
  /* Keep hover behavior for desktop and remove click behavior */
  .navmenu li.has-dropdown:hover > .dropdown {
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
    visibility: visible;
  }

  /* Disable click behavior on desktop */
  .navmenu li.has-dropdown.active > .dropdown {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: 0;
    visibility: hidden;
  }

  /* Hide back button on desktop */
  .nav-back {
    display: none;
  }

  /*----------------------------*\
	mega dropdown
\*----------------------------*/
  .nav-close {
    display: none;
  }

  .navmenu li.has-dropdown.megamenu {
    position: static;
  }

  .navmenu li.has-dropdown.megamenu > .dropdown {
    width: 100%;
  }

  .navmenu li.has-dropdown.megamenu > .dropdown .dropdown-body {
    padding: 30px;
  }

  .navmenu li.has-dropdown.megamenu > .dropdown .dropdown-list {
    margin-bottom: 30px;
  }

  .navmenu li.has-dropdown.megamenu > .dropdown .dropdown-list li a {
    padding-left: 0px;
    padding-right: 0px;
  }

  /*----------------------------*\
	tab dropdown
\*----------------------------*/

  .navmenu li.has-dropdown.megamenu > .dropdown.tab-dropdown .tab-content {
    z-index: 70;
    position: relative;
    margin-left: -30px;
  }

  .navmenu li.has-dropdown.megamenu > .dropdown.tab-dropdown .tab-nav {
    background-color: #1b1c1e;
    -webkit-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 60;
  }

  .navmenu li.has-dropdown.megamenu > .dropdown.tab-dropdown .tab-nav li {
    border-bottom: 1px solid #323335;
  }

  .navmenu li.has-dropdown.megamenu > .dropdown.tab-dropdown .tab-nav li a {
    display: block;
    padding: 15px;
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
  }

  .navmenu
    li.has-dropdown.megamenu
    > .dropdown.tab-dropdown
    .tab-nav
    li.active {
    background: #ee4266;
  }

  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  /* Remove hover effect for mobile */
  .navmenu li.has-dropdown:hover > .dropdown {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: 0;
    visibility: hidden;
  }

  /* Keep click behavior for mobile */
  .navmenu li.has-dropdown.active > .dropdown {
    display: block;
    opacity: 1;
    visibility: visible;
    position: relative;
    width: 100%;
    background: transparent;
    transform: none;
    box-shadow: none;
    padding-left: 15px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }

  .navmenu li.has-dropdown > .dropdown {
    display: none;
    position: static;
    width: 100%;
    background: transparent;
    transform: none;
    transition: none;
    box-shadow: none;
  }

  /* Dropdown arrow animation */
  .navmenu li.has-dropdown > a:after {
    transition: transform 0.3s;
  }

  .navmenu li.has-dropdown.active > a:after {
    transform: rotate(180deg);
  }

  /* Megamenu specific mobile styles */
  .navmenu li.has-dropdown.megamenu > .dropdown .dropdown-body {
    background: transparent;
    padding: 0;
    box-shadow: none;
    border: none;
  }

  .navmenu .megamenu .dropdown-heading {
    padding: 10px 0;
    color: var(--accent-color);
    z-index: 99999;
  }

  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    cursor: pointer;
    transition: 0.3s;
    margin-left: auto;
  }

  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    display: none;
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    background: #1b1c1e;
    width: 100%;
    max-width: 360px;
    padding: 80px 20px 20px;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9999;
    list-style-type: none;
  }

  .navmenu ul.mobile-nav-active {
    display: block;
  }

  .navmenu a {
    display: block;
    position: relative;
    color: #fff;
    padding: 15px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  /* Add active state color for mobile */
  .navmenu a.active,
  .navmenu .active > a,
  .navmenu li:hover > a {
    color: var(--nav-hover-color);
  }

  .navmenu .has-dropdown > a:after {
    content: "\f107";
    font-family: "FontAwesome";
    position: absolute;
    right: 0;
    transition: transform 0.3s;
  }

  .navmenu .has-dropdown.active > a:after {
    transform: rotate(180deg);
  }

  .navmenu .dropdown {
    display: none;
    padding-left: 15px;
    margin: 10px 0;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }

  .navmenu .has-dropdown.active > .dropdown {
    display: block;
  }

  .navmenu .dropdown a {
    padding: 10px 15px;
    font-size: 15px;
    border-bottom: none;
  }

  .navmenu .megamenu .dropdown-body {
    padding: 0;
    background: transparent;
    box-shadow: none;
    border: none;
  }

  .navmenu .megamenu .row {
    margin: 0;
  }

  .navmenu .megamenu .col-md-3 {
    padding: 0;
    margin-bottom: 20px;
  }

  .navmenu .megamenu .dropdown-heading {
    color: var(--accent-color);
    font-size: 15px;
    margin-bottom: 10px;
  }

  .navmenu .megamenu .dropdown-list li a {
    padding: 8px 15px;
    font-size: 14px;
  }

  /* Overlay */
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    z-index: 999;
  }

  .nav-overlay.active {
    visibility: visible;
    opacity: 1;
  }

  /* Hide close button on desktop */
  .nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
    z-index: 10000;
  }

  .nav-close:before,
  .nav-close:after {
    content: "";
    position: absolute;
    width: 30px;
    height: 2px;
    background: #fff;
    left: 50%;
    top: 50%;
    transition: 0.3s;
  }

  .nav-close:before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .nav-close:after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .nav-close:hover:before,
  .nav-close:hover:after {
    background: var(--accent-color);
  }

  /* Back button styles */
  .nav-back {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    background: none;
    border: none;
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 10000;
  }

  .nav-back:hover {
    color: var(--nav-hover-color);
  }

  .nav-back i {
    font-size: 20px;
  }
}

/*******************************/
/********** Hero CSS ***********/
/*******************************/
.carousel {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 400px;
  background: #ffffff;
}

.carousel .container-fluid {
  padding: 0;
}

.carousel .carousel-item {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #666666;
}

.carousel .carousel-image {
  object-fit: cover;
  padding-bottom: 50px;
}

.carousel .carousel-text {
  position: absolute;
  max-width: 700px;
  height: calc(100vh - 35px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  top: 8%;
  z-index: 2;
}

.carousel .carousel-text p {
  text-align: center;
  color: #ffffff;
  font-size: 60px;
  font-weight: 700;
  font-family: Nunito, sans-serif;
  margin-bottom: 0px;
}

.carousel .carousel-text .emphasis {
  color: #0d0d0d;
}
.carousel .carousel-text .value {
  color: #fff;
  text-align: center;
  font-size: 20px;
  margin-bottom: 35px;
  margin-top: 30px;
}

@media (max-width: 991.98px) {
  .carousel,
  .carousel .carousel-item,
  .carousel .carousel-text {
    height: calc(100vh - 105px);
  }

  .carousel .carousel-text p {
    font-size: 35px;
  }

  .carousel .carousel-text .value {
    font-size: 16px;
  }

  .carousel .carousel-text .btn {
    padding: 12px 30px;
    font-size: 15px;
    letter-spacing: 0;
  }
}

@media (max-width: 767.98px) {
  .carousel,
  .carousel .carousel-item,
  .carousel .carousel-text {
    height: calc(100vh - 70px);
  }

  .carousel .carousel-text p {
    font-size: 30px;
  }
}

@media (max-width: 575.98px) {
  .carousel .carousel-text p {
    font-size: 25px;
  }
}
/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.cta {
  position: relative;
  margin: auto;
  padding: 12px 18px;
  transition: all 0.2s ease;
  border: none;
  background: none;
  cursor: pointer;
}

.cta:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  border-radius: 50px;
  background: #b1dae7;
  width: 45px;
  height: 45px;
  transition: all 0.3s ease;
}

.cta span {
  position: relative;
  font-family: "Ubuntu", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #234567;
}

.cta svg {
  position: relative;
  top: 0;
  margin-left: 10px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: #234567;
  stroke-width: 2;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}

.cta:hover:before {
  width: 100%;
  background: #b1dae7;
}

.cta:hover svg {
  transform: translateX(0);
}

.cta:active {
  transform: scale(0.95);
}

.why-us {
  background-color: #e0e0e0;
  padding: 80px 0;
}

.why-us .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.why-us .content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.why-us .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.why-us .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.why-us .faq-container .faq-item h3 {
  font-weight: 500;
  font-size: 17px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
}

.why-us .faq-container .faq-item h3 span {
  color: var(--number-style-color);
  padding-right: 5px;
  font-weight: 600;
}

.why-us .faq-container .faq-item h3:hover {
  color: var(--font-style-color);
}

.why-us .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.why-us .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.why-us .faq-container .faq-item .faq-icon {
  position: absolute;
  top: 22px;
  left: 20px;
  font-size: 22px;
  line-height: 0;
  transition: 0.3s;
  color: var(--accent-color);
}

.why-us .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.why-us .faq-container .faq-item .faq-toggle:hover {
  color: var(--font-style-color);
}

.why-us .faq-container .faq-active h3 {
  color: var(--font-style-color);
}

.why-us .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.why-us .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--font-style-color);
}

.why-us .why-us-img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-us .why-us-img img {
  max-height: 100%;
}
/*******************************/
/********* About CSS *********/
/*******************************/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  text-transform: uppercase;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: #000000;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}
.about {
  background-color: #f3f3f3;
  padding: 30px 0;
}
.about ul {
  list-style: none;
  padding: 0;
}

.about ul li {
  padding-bottom: 5px;
  display: flex;
  align-items: center;
}

.about ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #28a745;
}

.about .read-more {
  color: #47b2e4;
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 8px 28px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #47b2e4;
}

.about .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .read-more:hover {
  background: #47b2e4;
  color: #ffffff;
}

.about .read-more:hover i {
  transform: translate(5px, 0);
}
/*******************************/
/*********features CSS *********/
/*******************************/
.feature {
  position: relative;
  width: 100%;
  background: rgba(0, 0, 0, 0.04);
}
.features-section {
  background-color: #e0e0e0;
  padding: 50px 20px;
}

.features-section h1 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #333;
}

.features-section p {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.feature-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.feature-card h2 {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: #666;
}

.learn-more {
  display: inline-block;
  margin-top: 40px;
  padding: 10px 30px;
  font-size: 16px;
  color: #333;
  border: 2px solid #333;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}

.learn-more:hover {
  background-color: #333;
  color: #fff;
}
/*******************************/
/********* Testimonials CSS **********/
/*******************************/
.testimonials {
  padding-top: 50px;
}
.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
}

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

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

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

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

.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(--font-style-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 .section-title p {
  color: #9d9d9d;
}
.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

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

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

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

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

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}
/*******************************/
/********* Blogs CSS **********/
/*******************************/
.blog-section {
  padding: 10rem 0 12rem 0;
  background-color: #e0e0e0;
}
.blog-section a {
  color: #a0a053;
}
.blog-section .post-entry a {
  text-decoration: none;
}
.blog-section .post-entry .post-thumbnail {
  display: block;
  margin-bottom: 20px;
}
.blog-section .post-entry .post-thumbnail img {
  border-radius: 20px;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.blog-section .post-entry .post-content-entry {
  padding-left: 15px;
  padding-right: 15px;
}
.blog-section .post-entry .post-content-entry h3 {
  font-size: 16px;
  margin-bottom: 0;
  font-weight: 600;
  margin-bottom: 7px;
}
.blog-section .post-entry .post-content-entry .meta {
  font-size: 14px;
}
.blog-section .post-entry .post-content-entry .meta a {
  font-weight: 600;
}
.blog-section .post-entry:hover .post-thumbnail img,
.blog-section .post-entry:focus .post-thumbnail img {
  opacity: 0.7;
}
/* Questions Css */
.faq-2 {
  padding-top: 50px;
  padding-bottom: 50px;
}
.faq-2 .faq-container {
  margin-top: 15px;
}

.faq-2 .faq-container .faq-item {
  background-color: #f4f4f4;
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  overflow: hidden;
}

.faq-2 .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq-2 .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 32px;
  transition: 0.3s;
  cursor: pointer;
}

.faq-2 .faq-container .faq-item h3 span {
  color: var(--number-style-color);
  padding-right: 5px;
}

.faq-2 .faq-container .faq-item h3:hover {
  color: var(--number-style-color);
}

.faq-2 .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq-2 .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq-2 .faq-container .faq-item .faq-icon {
  position: absolute;
  top: 22px;
  left: 20px;
  font-size: 20px;
  line-height: 0;
  transition: 0.3s;
  color: var(--number-style-color);
}

.faq-2 .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq-2 .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq-2 .faq-container .faq-active h3 {
  color: var(--number-style-color);
}

.faq-2 .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq-2 .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}
