/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Lato",  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: "Inter",  sans-serif;
  --nav-font: "Lato",  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: #673065; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #e6540e; /* 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: #ffffff; /* 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: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #e6540e; /* 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: #e6540e; /* 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: #f4f5fe;
  --surface-color: #ffffff;
}

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

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
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);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
}

.header .topbar {
  background-color: var(--background-color);
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
}

.header .topbar .contact-info i {
  font-style: normal;
  color: var(--contrast-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--contrast-color);
}

@media (max-width: 575px) {

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
  color: var(--contrast-color);
  text-decoration: underline;
}

.header .topbar .social-links a {
  color: color-mix(in srgb, var(--contrast-color), transparent 40%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header .topbar .social-links a:hover {
  color: var(--contrast-color);
}

.header .branding {
  min-height: 60px;
  padding: 10px 0;
}

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

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

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.scrolled .header .topbar {
  height: 0;
  visibility: hidden;
  overflow: hidden;
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #673065;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .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: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    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);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

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

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

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

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

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

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

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

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding: 40px 0 0 0;
  position: relative;
}

.footer .icon {
  color: var(--accent-color);
  margin-right: 15px;
  font-size: 24px;
  line-height: 0;
}

.footer h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer .address p {
  margin-bottom: 0px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 5px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 160px 0 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 88%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title div {
  color: var(--heading-color);
  margin: 0;
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding-top: 120px;
  width: 100%;
  min-height: 70vh;
  position: relative;
  display: flex;
  align-items: center;
  padding-bottom: 120px;
}

.hero .hero-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 10%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

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

.hero h1 {
  margin: 0 0 20px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: color-mix(in srgb, var(--heading-color), transparent 30%);
}

.hero h1 span {
  color: var(--heading-color);
  border-bottom: 4px solid var(--accent-color);
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 22px;
  font-weight: 400;
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 12px 28px;
  border-radius: 5px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}

.hero .hero-waves {
  display: block;
  width: 100%;
  height: 60px;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 3;
}

.hero .wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
  opacity: 0.6;
}

.hero .wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
  opacity: 0.4;
}

.hero .wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-content h2 {
  font-size: 36px;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 30px;
  line-height: 1.3;
}

.features .features-content .lead {
  font-size: 18px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}

.features .features-image {
  position: relative;
}

.features .features-image img {
  border-radius: 8px;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

.features .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 80px;
}

.features .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 0;
  transition: all 0.3s ease;
}

.features .feature-item:hover {
  transform: translateY(-5px);
}

.features .feature-item:hover .feature-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #6c5ce7 30%));
}

.features .feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #4834d4 20%));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.features .feature-icon i {
  font-size: 24px;
  color: var(--contrast-color);
}

.features .feature-content h4 {
  font-size: 20px;
  font-weight: 400;
  color: var(--heading-color);
  margin-bottom: 12px;
  line-height: 1.4;
}

.features .feature-content p {
  font-size: 15px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .features .features-content {
    text-align: center;
  }

  .features .features-content h2 {
    font-size: 28px;
  }

  .features .features-grid {
    margin-top: 60px;
    gap: 30px;
  }

  .features .feature-item {
    gap: 16px;
  }

  .features .feature-icon {
    width: 50px;
    height: 50px;
  }

  .features .feature-icon i {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .features .features-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .features .features-content h2 {
    font-size: 24px;
  }

  .features .features-content .lead {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Cards Section
--------------------------------------------------------------*/
.cards .service-item {
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--default-color), transparent 93%);
  transition: all 0.3s ease-in-out;
  height: 100%;
  position: relative;
  border: 1px solid transparent;
  padding-bottom: 30px;
}

.cards .service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 88%);
}

.cards .service-item:hover .image-container img {
  transform: scale(1.05);
}

.cards .service-item:hover .icon-box {
  background-color: var(--accent-color);
  transform: translateX(-50%) rotate(45deg);
  color: var(--contrast-color);
}

.cards .service-item:hover .icon-box i {
  transform: rotate(-45deg);
}

.cards .service-item .image-container {
  position: relative;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}

.cards .service-item .image-container img {
  transition: transform 0.4s ease;
}

.cards .service-item .icon-box {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 64px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  border: 4px solid var(--surface-color);
  transition: all 0.3s ease;
  transform-origin: center;
}

.cards .service-item .icon-box i {
  transition: transform 0.3s ease;
}

.cards .service-item .content {
  padding: 50px 25px 25px 25px;
  text-align: center;
}

.cards .service-item .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.cards .service-item .content h4 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.cards .service-item .content h4 a:hover {
  color: var(--accent-color);
}

.cards .service-item .content p {
  font-size: 15px;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.cards .service-item .content .read-more {
  display: inline-flex;
  align-items: center;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}

.cards .service-item .content .read-more i {
  margin-left: 5px;
  transition: margin-left 0.3s ease;
}

.cards .service-item .content .read-more:hover i {
  margin-left: 8px;
}

.cards .service-item.featured {
  border: 1px solid var(--accent-color);
  box-shadow: 0 8px 30px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.cards .service-item.featured .icon-box {
  background: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 576px) {
  .cards .service-item .content {
    padding: 40px 20px 20px 20px;
  }

  .cards .service-item .content h4 {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# Cards 3 Section
--------------------------------------------------------------*/
.cards-3 .card-item {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  position: relative;
  border-radius: 0;
}

.cards-3 .card-item .card-bg {
  min-height: 300px;
  position: relative;
}

.cards-3 .card-item .card-bg img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.cards-3 .card-item .card-body {
  padding: 30px;
}

.cards-3 .card-item h4 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
}

.cards-3 .card-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

/*--------------------------------------------------------------
# Cards 4 Section
--------------------------------------------------------------*/
.cards-4 {
  --default-color: #666;
  --heading-color: #673065;
}

.cards-4 .promo-card {
  position: relative;
  height: 100%;
  min-height: 400px;
  padding: 1rem;
  border-radius: 0.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

.cards-4 .promo-card:hover {
  transform: translateY(-5px);
}

.cards-4 .promo-card .promo-content {
  position: relative;
  z-index: 2;
  max-width: 100%;
}

.cards-4 .promo-card .small-text {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  opacity: 0.8;
	color: #e6540e;
}

.cards-4 .promo-card .promo-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cards-4 .promo-card .promo-description {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.cards-4 .promo-card .btn-shop {
  display: inline-block;
  position: relative;
  font-weight: 600;
  color: var(--heading-color);
  text-decoration: none;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid var(--heading-color);
  transition: all 0.3s ease;
}

.cards-4 .promo-card .btn-shop:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.cards-4 .promo-card .promo-image {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 50%;
  max-height: 80%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  z-index: 1;
}

.cards-4 .promo-card .promo-image img {
  max-height: 100%;
  object-fit: contain;
}

.cards-4 .promo-card.card-1 {
  background-color: #fff; border: 2px solid #e6540e;
  color: var(--default-color);
}

.cards-4 .promo-card.card-1 .promo-title {
  color: var(--heading-color);
}

.cards-4 .promo-card.card-2 {
  background-color: #fff; border: 2px solid #e6540e;
  color: var(--default-color);
}

.cards-4 .promo-card.card-2 .promo-title {
  color: var(--heading-color);
}

.cards-4 .promo-card.card-3 {
  background-color: #fff; border: 2px solid #e6540e;
  color: var(--default-color);
}

.cards-4 .promo-card.card-3 .promo-title {
  color: var(--heading-color);
}

.cards-4 .promo-card.card-4 {
  background-color: #fff; border: 2px solid #e6540e;
  color: var(--default-color);
}

.cards-4 .promo-card.card-4 .promo-title {
  color: var(--heading-color);
}

@media (max-width: 991.98px) {
  .cards-4 .promo-card {
    min-height: 350px;
  }

  .cards-4 .promo-card .promo-content {
    max-width: 100%;
  }

  .cards-4 .promo-card .promo-image {
    max-width: 40%;
    max-height: 70%;
    opacity: 0.9;
  }
}

@media (max-width: 767.98px) {
  .cards-4 .promo-card {
    min-height: 300px;
    padding: 1.5rem;
  }

  .cards-4 .promo-card .promo-title {
    font-size: 1.5rem;
  }

  .cards-4 .promo-card .promo-image {
    max-width: 45%;
    max-height: 65%;
  }
}

/*--------------------------------------------------------------
# Steps Section
--------------------------------------------------------------*/
.steps .steps-content {
  padding-right: 30px;
  margin-bottom: 40px;
}

@media (max-width: 992px) {
  .steps .steps-content {
    padding-right: 0;
  }
}

.steps .steps-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .steps .steps-content h2 {
    font-size: 2rem;
  }
}

.steps .steps-content .lead {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--default-color);
}

.steps .steps-content p {
  margin-bottom: 2rem;
  color: var(--default-color);
}

.steps .steps-content .steps-cta {
  display: flex;
  gap: 15px;
}

@media (max-width: 576px) {
  .steps .steps-content .steps-cta {
    flex-direction: column;
  }
}

.steps .steps-content .steps-cta .btn {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.steps .steps-content .steps-cta .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.steps .steps-content .steps-cta .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  border-color: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.steps .steps-content .steps-cta .btn-outline {
  background-color: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.steps .steps-content .steps-cta .btn-outline:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.steps .steps-list {
  position: relative;
}

.steps .steps-list::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 25px;
  width: 2px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

@media (max-width: 576px) {
  .steps .steps-list::before {
    left: 20px;
  }
}

.steps .steps-list .step-item {
  display: flex;
  margin-bottom: 30px;
  position: relative;
}

.steps .steps-list .step-item:last-child {
  margin-bottom: 0;
}

.steps .steps-list .step-item:hover .step-number {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}

.steps .steps-list .step-item .step-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color) 10%, white 90%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  margin-right: 20px;
  z-index: 1;
  transition: all 0.3s ease;
}

@media (max-width: 576px) {
  .steps .steps-list .step-item .step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

.steps .steps-list .step-item .step-content {
  padding-top: 5px;
}

.steps .steps-list .step-item .step-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--heading-color);
}

@media (max-width: 576px) {
  .steps .steps-list .step-item .step-content h3 {
    font-size: 1.1rem;
  }
}

.steps .steps-list .step-item .step-content p {
  font-size: 0.95rem;
  color: var(--default-color);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Cards 2 Section
--------------------------------------------------------------*/
.cards-2 .card-item {
  background-color: color-mix(in srgb, var(--accent-color), var(--background-color) 95%);
  border-radius: 10px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cards-2 .card-item.active,
.cards-2 .card-item:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.cards-2 .card-item.active h3,
.cards-2 .card-item.active .icon,
.cards-2 .card-item.active .read-more,
.cards-2 .card-item:hover h3,
.cards-2 .card-item:hover .icon,
.cards-2 .card-item:hover .read-more {
  color: var(--contrast-color);
}

.cards-2 .card-item.active .read-more:hover,
.cards-2 .card-item:hover .read-more:hover {
  color: var(--contrast-color);
}

.cards-2 .card-item:hover {
  transform: translateY(-5px);
}

.cards-2 .card-item .icon {
  font-size: 48px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.cards-2 .card-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cards-2 .card-item .img-wrapper {
  width: 200px;
  height: 200px;
  overflow: hidden;
  border-radius: 50%;
  margin-bottom: 20px;
}

.cards-2 .card-item .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cards-2 .card-item .read-more {
  color: var(--accent-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

.cards-2 .card-item .read-more:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.cards-2 .card-item .read-more i {
  margin-left: 5px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  background-color: color-mix(in srgb, var(--background-color), var(--accent-color) 2%);
}

.services .service-item {
  padding: 60px 40px 0px;
  background-color: var(--surface-color);
  border-radius: 0px;
  transition: all 0.4s ease-in-out;
  height: 90%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.services .service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease-in-out;
}

.services .service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 90%);
}

.services .service-item:hover::before {
  transform: scaleX(1);
}

.services .service-item:hover .service-icon {
  transform: scale(1.1);
}

.services .service-item:hover .service-link {
  color: var(--accent-color);
}

.services .service-item:hover .service-link i {
  transform: translateX(8px);
}

.services .service-item .service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 20%));
  border-radius: 0%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  transition: transform 0.4s ease-in-out;
  flex-shrink: 0;
}

.services .service-item .service-icon i {
  font-size: 32px;
  color: var(--contrast-color);
}

.services .service-item h3 {
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 20px;
  line-height: 1.3;
}

.services .service-item p {
  font-size: 16px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 32px;
  flex-grow: 1;
}

.services .service-item .service-link {
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease-in-out;
  align-self: flex-start;
}

.services .service-item .service-link i {
  font-size: 16px;
  transition: transform 0.3s ease-in-out;
}

@media (max-width: 768px) {
  .services .service-item {
    padding: 40px 24px;
  }

  .services .service-item .service-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
  }

  .services .service-item .service-icon i {
    font-size: 28px;
  }

  .services .service-item h3 {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .services .service-item p {
    font-size: 15px;
    margin-bottom: 24px;
  }
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats {
	
	
	background-image: url("../img/hero-bg-3.jpg");
	background-size: cover;
	
	

}


.stats i {
  background-color: var(--surface-color);
  color: var(--accent-color);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  width: 54px;
  height: 54px;
  font-size: 24px;
  border-radius: 50px;
  border: 2px solid var(--background-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.stats .stats-item {
  background-color: var(--surface-color);
  margin-top: -27px;
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  z-index: 0;
}

.stats .stats-item span {
  font-size: 36px;
  display: block;
  font-weight: 700;
  color: #673065;
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
	color: #673065;
}

/*--------------------------------------------------------------
# Departments Section
--------------------------------------------------------------*/
.departments .department-card {
  background: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--default-color), transparent 85%);
  transition: all 0.3s ease;
  height: 100%;
}

.departments .department-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px color-mix(in srgb, var(--default-color), transparent 75%);
}

.departments .department-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.departments .department-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.departments .department-card:hover .department-image img {
  transform: scale(1.05);
}

.departments .department-content {
  padding: 30px;
  position: relative;
}

.departments .department-icon {
  position: absolute;
  top: -30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 40%);
}

.departments .department-icon i {
  font-size: 24px;
  color: var(--contrast-color);
}

.departments h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 40px 0 15px 0;
  color: var(--heading-color);
}

.departments p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.departments .btn-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.departments .btn-learn-more span {
  transition: transform 0.3s ease;
}

.departments .btn-learn-more i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.departments .btn-learn-more:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.departments .btn-learn-more:hover span {
  transform: translateX(3px);
}

.departments .btn-learn-more:hover i {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .departments .department-content {
    padding: 25px 20px;
  }

  .departments .department-icon {
    left: 20px;
    width: 50px;
    height: 50px;
    top: -25px;
  }

  .departments .department-icon i {
    font-size: 20px;
  }

  .departments h3 {
    font-size: 20px;
    margin: 35px 0 15px 0;
  }

  .departments p {
    font-size: 14px;
    margin-bottom: 20px;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.call-to-action .cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.call-to-action .cta-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--background-color), transparent 20%);
}

.call-to-action .container {
  position: relative;
  z-index: 2;
}

.call-to-action .cta-content h2 {
  font-size: 2.5rem;
  font-weight: 100;
  margin-bottom: 0px;
}

.call-to-action .cta-content h4 {
  font-size: 1.25rem;
  font-weight: normal;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .call-to-action .cta-content h2 {
    font-size: 2rem;
  }
}

.call-to-action .cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.6;
}

.call-to-action .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.call-to-action .cta-buttons .btn {
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.call-to-action .cta-buttons .btn.btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.call-to-action .cta-buttons .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  border-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
}

.call-to-action .cta-buttons .btn.btn-outline {
  background-color: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.call-to-action .cta-buttons .btn.btn-outline:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .call-to-action .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .call-to-action .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

.call-to-action .cta-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.call-to-action .cta-features .feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.call-to-action .cta-features .feature-item i {
  font-size: 1.2rem;
  color: var(--accent-color);
}

.call-to-action .cta-features .feature-item span {
  font-size: 0.95rem;
  font-weight: 500;
}

@media (max-width: 576px) {
  .call-to-action .cta-features {
    flex-direction: column;
    gap: 1rem;
  }

  .call-to-action .cta-features .feature-item {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .call-to-action {
    min-height: 400px;
    padding: 80px 0;
  }

  .call-to-action .cta-content h2 {
    margin-bottom: 1rem;
  }

  .call-to-action .cta-content p {
    margin-bottom: 2rem;
  }

  .call-to-action .cta-buttons {
    margin-bottom: 2rem;
  }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 30px 0;
}

.clients .clients-wrapper {
  position: relative;
  padding: 60px 0;
}

.clients .clients-wrapper::before,
.clients .clients-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.clients .clients-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--background-color), transparent);
}

.clients .clients-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--background-color), transparent);
}

.clients .clients-track {
  display: flex;
  gap: 30px;
  padding: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.clients .clients-track::-webkit-scrollbar {
  display: none;
}

.clients .client-logo {
  flex: 0 0 auto;
  width: 180px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: var(--surface-color);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.clients .client-logo img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.clients .client-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color) 15%, transparent);
  background-color: color-mix(in srgb, var(--surface-color) 98%, var(--accent-color));
}

.clients .client-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
}

@media (max-width: 991px) {
  .clients .client-logo {
    width: 160px;
    height: 120px;
  }

  .clients .client-logo img {
    max-height: 70px;
  }
}

@media (max-width: 767px) {
  .clients .client-logo {
    width: 140px;
    height: 100px;
    padding: 15px;
  }

  .clients .client-logo img {
    max-height: 60px;
  }

  .clients .clients-track {
    gap: 20px;
    padding: 15px;
  }
}

/*--------------------------------------------------------------
# Services 2 Section
--------------------------------------------------------------*/
.services-2 .feature-visual {
  position: relative;
}

.services-2 .feature-visual .rounded-4 {
  border-radius: 16px !important;
}

.services-2 .feature-visual img {
  display: block;
}

.services-2 .feature-visual::after {
  content: "";
  position: absolute;
  inset: 10% -6% auto auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  filter: blur(0.5px);
}

.services-2 .intro {
  position: relative;
}

.services-2 .intro .badge-label {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.4px;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  font-weight: 600;
}

.services-2 .intro .intro-title {
  margin: 12px 0 8px;
  line-height: 1.25;
}

.services-2 .intro .intro-text {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 14px;
}

.services-2 .intro .mini-service {
  align-items: flex-start;
}

.services-2 .intro .mini-service .icon-wrapper {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
}

.services-2 .intro .mini-service .icon-wrapper i {
  font-size: 20px;
}

.services-2 .intro .mini-service h5 {
  font-size: 16px;
  margin-top: 2px;
}

.services-2 .intro .mini-service p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.services-2 .services-grid {
  margin-top: 10px;
}

.services-2 .service-card {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 14px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.services-2 .service-card .service-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  font-weight: 600;
}

.services-2 .service-card .icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  margin-bottom: 16px;
}

.services-2 .service-card .icon i {
  font-size: 24px;
}

.services-2 .service-card .title {
  font-size: 20px;
  margin-bottom: 8px;
}

.services-2 .service-card .title a {
  color: var(--heading-color);
}

.services-2 .service-card .title a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 10%);
}

.services-2 .service-card .desc {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 14px;
}

.services-2 .service-card .meta {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  margin-bottom: 18px;
}

.services-2 .service-card .meta i {
  vertical-align: -2px;
}

.services-2 .service-card .btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-weight: 600;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 55%);
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  padding: 8px 14px;
  border-radius: 10px;
  transition: 0.3s;
}

.services-2 .service-card .btn-cta:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
  transform: translateY(-1px);
}

.services-2 .service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 26px color-mix(in srgb, var(--default-color), transparent 92%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 65%);
}

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

@media (max-width: 992px) {
  .services-2 .intro .intro-title {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .services-2 .service-card {
    padding: 22px 18px;
  }
}

/*--------------------------------------------------------------
# Services 3 Section
--------------------------------------------------------------*/
.services-3 {
  background: linear-gradient(135deg, var(--background-color) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
  position: relative;
  overflow: hidden;
}

.services-3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../img/abstract-bg-3.webp") center/cover;
  opacity: 0.03;
  z-index: 1;
}

.services-3 .container {
  position: relative;
  z-index: 2;
}

.services-3 .service-card {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
  box-shadow: 0 10px 40px color-mix(in srgb, var(--heading-color), transparent 90%);
}

.services-3 .service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 60px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.services-3 .service-card:hover .service-bg {
  opacity: 1;
  transform: scale(1.2) rotate(15deg);
}

.services-3 .service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff6b35 30%));
}

.services-3 .service-card:hover .btn-cta {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff6b35 30%));
  transform: translateX(5px);
}

.services-3 .service-card.featured {
  background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--accent-color), transparent 95%));
  border: 2px solid var(--accent-color);
  transform: scale(1.02);
}

.services-3 .service-card.featured .service-icon {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff6b35 20%));
  width: 80px;
  height: 80px;
}

.services-3 .service-card.featured .service-icon i {
  font-size: 40px;
}

.services-3 .service-card.featured .service-content h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

.services-3 .service-card.featured .service-meta {
  margin: 25px 0;
}

.services-3 .service-card.compact {
  padding: 30px 25px;
}

.services-3 .service-card.compact .service-icon {
  width: 60px;
  height: 60px;
}

.services-3 .service-card.compact .service-icon i {
  font-size: 28px;
}

.services-3 .service-card .service-bg {
  position: absolute;
  top: -50%;
  right: -30%;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%), color-mix(in srgb, var(--accent-color), transparent 95%));
  border-radius: 50%;
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 1;
}

.services-3 .service-card .service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 10%), var(--accent-color));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.services-3 .service-card .service-icon i {
  font-size: 32px;
  color: var(--contrast-color);
  transition: all 0.3s ease;
}

.services-3 .service-card .service-content {
  position: relative;
  z-index: 2;
}

.services-3 .service-card .service-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.services-3 .service-card .service-content h3 a {
  color: var(--heading-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.services-3 .service-card .service-content h3 a:hover {
  color: var(--accent-color);
}

.services-3 .service-card .service-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 15px;
}

.services-3 .service-card .service-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 20px 0 25px;
  flex-wrap: wrap;
}

.services-3 .service-card .service-meta .badge {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: var(--contrast-color);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.services-3 .service-card .service-meta .badge.popular {
  background: linear-gradient(135deg, #28a745, #20c997);
}

.services-3 .service-card .service-meta .price {
  color: var(--accent-color);
  font-weight: 700;
  font-size: 16px;
}

.services-3 .service-card .btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 10%), var(--accent-color));
  color: var(--contrast-color);
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.services-3 .service-card .btn-cta:hover {
  color: var(--contrast-color);
  box-shadow: 0 8px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.services-3 .service-card .btn-cta i {
  transition: all 0.3s ease;
}

.services-3 .stats-highlight {
  background: var(--accent-color);
  border-radius: 25px;
  padding: 50px 30px;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

.services-3 .stats-highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent, color-mix(in srgb, var(--accent-color), transparent 90%));
  z-index: 1;
}

.services-3 .stats-highlight .row {
  position: relative;
  z-index: 2;
}

.services-3 .stats-highlight .stat-item {
  text-align: center;
  color: var(--contrast-color);
}

.services-3 .stats-highlight .stat-item .stat-number {
  font-size: 48px;
  font-weight: 900;
  color: var(--contrast-color);
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--contrast-color), color-mix(in srgb, var(--accent-color), var(--contrast-color) 70%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
  .services-3 .stats-highlight .stat-item .stat-number {
    font-size: 36px;
  }
}

.services-3 .stats-highlight .stat-item .stat-label {
  font-size: 16px;
  font-weight: 500;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .services-3 .stats-highlight .stat-item .stat-label {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .services-3 .service-card {
    padding: 30px 25px;
    margin-bottom: 30px;
  }

  .services-3 .service-card.featured {
    transform: none;
    margin-bottom: 30px;
  }

  .services-3 .service-card.featured .service-content h3 {
    font-size: 24px;
  }

  .services-3 .service-card .service-icon {
    width: 60px;
    height: 60px;
  }

  .services-3 .service-card .service-icon i {
    font-size: 28px;
  }

  .services-3 .service-card .service-content h3 {
    font-size: 20px;
  }

  .services-3 .stats-highlight {
    padding: 40px 20px;
    margin-top: 40px;
  }
}

/*--------------------------------------------------------------
# Services 4 Section
--------------------------------------------------------------*/
.services-4 .feature-card {
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--surface-color), var(--accent-color) 3%) 100%);
  padding: 35px 25px;
  border-radius: 20px;
  text-align: center;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
	
}

.services-4 .feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--accent-color), transparent 90%), transparent);
  transition: left 0.5s ease;
}

.services-4 .feature-card .feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 20%));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.services-4 .feature-card .feature-icon i {
  font-size: 32px;
  color: var(--contrast-color);
}

.services-4 .feature-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.services-4 .feature-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  position: relative;
  z-index: 2;
  opacity: 0.8;
}

.services-4 .feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--accent-color);
  box-shadow: 0 20px 40px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.services-4 .feature-card:hover::before {
  left: 100%;
}

.services-4 .feature-card:hover .feature-icon {
  transform: rotateY(180deg);
  box-shadow: 0 12px 35px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.services-4 .service-card {
  background: var(--surface-color);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 10px 40px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.4s ease;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.services-4 .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px color-mix(in srgb, var(--default-color), transparent 80%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.services-4 .service-card .service-media {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.services-4 .service-card .service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.services-4 .service-card .service-media .service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, color-mix(in srgb, var(--accent-color), transparent 20%), transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 25px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.services-4 .service-card .service-media .service-badge {
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.services-4 .service-card .service-media .service-badge i {
  font-size: 26px;
  color: var(--contrast-color);
}

.services-4 .service-card .service-media:hover img {
  transform: scale(1.1);
}

.services-4 .service-card .service-media:hover .service-overlay {
  opacity: 1;
}

.services-4 .service-card .service-media:hover .service-badge {
  transform: translateY(0);
}

.services-4 .service-card .service-body {
  padding: 20px 35px 0px;
}

.services-4 .service-card .service-body h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.services-4 .service-card .service-body .service-desc {
  margin-bottom: 30px;
  line-height: 1.7;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.services-4 .service-card .service-body .service-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.services-4 .service-card .service-body .service-benefits .benefit-tag {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 8px 15px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.services-4 .service-card .service-body .service-benefits .benefit-tag i {
  font-size: 14px;
}

.services-4 .service-card .service-body .service-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.services-4 .service-card .service-body .service-action .pricing-info {
  display: flex;
  flex-direction: column;
}

.services-4 .service-card .service-body .service-action .pricing-info .price-label {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.services-4 .service-card .service-body .service-action .pricing-info .price-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
}

.services-4 .service-card .service-body .service-action .action-btn {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 20%));
  color: var(--contrast-color);
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.services-4 .service-card .service-body .service-action .action-btn i {
  transition: transform 0.3s ease;
}

.services-4 .service-card .service-body .service-action .action-btn:hover {
  background: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateX(5px);
}

.services-4 .service-card .service-body .service-action .action-btn:hover i {
  transform: translateX(3px);
}

@media (max-width: 992px) {
  .services-4 .feature-card {
    margin-bottom: 30px;
    padding: 30px 20px;
  }

  .services-4 .feature-card .feature-icon {
    width: 60px;
    height: 60px;
  }

  .services-4 .feature-card .feature-icon i {
    font-size: 28px;
  }

  .services-4 .feature-card h4 {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .services-4 .feature-card {
    padding: 25px 20px;
  }

  .services-4 .feature-card .feature-icon {
    width: 55px;
    height: 55px;
  }

  .services-4 .feature-card .feature-icon i {
    font-size: 24px;
  }

  .services-4 .feature-card h4 {
    font-size: 16px;
  }

  .services-4 .feature-card p {
    font-size: 13px;
  }

  .services-4 .service-card .service-media {
    height: 220px;
  }

  .services-4 .service-card .service-body {
    padding: 25px;
  }

  .services-4 .service-card .service-body h3 {
    font-size: 22px;
  }

  .services-4 .service-card .service-body .service-desc {
    font-size: 14px;
  }

  .services-4 .service-card .service-body .service-benefits .benefit-tag {
    font-size: 12px;
    padding: 6px 12px;
  }

  .services-4 .service-card .service-body .service-action {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .services-4 .service-card .service-body .service-action .action-btn {
    padding: 14px 30px;
    width: 100%;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Admissions Section
--------------------------------------------------------------*/
.admissions .admission-hero {
  margin-bottom: 5rem;
}

.admissions .admission-hero .hero-content h2 {
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .admissions .admission-hero .hero-content h2 {
    font-size: 2.2rem;
  }
}

.admissions .admission-hero .hero-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 2.5rem;
}

.admissions .admission-hero .hero-stats {
  display: flex;
  gap: 3rem;
}

@media (max-width: 576px) {
  .admissions .admission-hero .hero-stats {
    gap: 1.5rem;
  }
}

.admissions .admission-hero .hero-stats .stat-item {
  text-align: center;
}

.admissions .admission-hero .hero-stats .stat-item .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent-color);
  line-height: 1;
}

.admissions .admission-hero .hero-stats .stat-item .stat-label {
  display: block;
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-top: 0.3rem;
}

.admissions .admission-hero .hero-image {
  position: relative;
}

.admissions .admission-hero .hero-image img {
  border-radius: 16px;
}

.admissions .admission-hero .hero-image .floating-badge {
  position: absolute;
  top: -15px;
  right: -15px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.admissions .admission-hero .hero-image .floating-badge i {
  font-size: 1.2rem;
}

@media (max-width: 992px) {
  .admissions .admission-hero .hero-image .floating-badge {
    position: static;
    margin-top: 1rem;
    align-self: flex-start;
  }
}

.admissions .application-timeline {
  margin-bottom: 5rem;
}

.admissions .application-timeline .timeline-header {
  text-align: center;
  margin-bottom: 3rem;
}

.admissions .application-timeline .timeline-header h3 {
  font-size: 2.2rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.admissions .application-timeline .timeline-header p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.admissions .application-timeline .timeline-container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  position: relative;
}

@media (max-width: 992px) {
  .admissions .application-timeline .timeline-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .admissions .application-timeline .timeline-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.admissions .application-timeline .timeline-container::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 6.5%;
  right: 6.5%;
  height: 2px;
  background: linear-gradient(to right, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), transparent 60%) 100%);
  z-index: 0;
}

@media (max-width: 992px) {
  .admissions .application-timeline .timeline-container::before {
    display: none;
  }
}

.admissions .application-timeline .timeline-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.admissions .application-timeline .timeline-item .timeline-marker {
  width: 50px;
  height: 50px;
  background-color: var(--surface-color);
  border: 3px solid var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.admissions .application-timeline .timeline-item .timeline-marker i {
  font-size: 1.2rem;
  color: var(--accent-color);
}

.admissions .application-timeline .timeline-item .timeline-content h4 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  color: var(--heading-color);
}

.admissions .application-timeline .timeline-item .timeline-content p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 1rem;
}

.admissions .application-timeline .timeline-item .timeline-content .timeline-duration {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.admissions .requirements-checklist h3 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 2rem;
  color: var(--heading-color);
}

.admissions .requirements-checklist .checklist-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.admissions .requirements-checklist .checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
}

.admissions .requirements-checklist .checklist-item .check-icon {
  width: 24px;
  height: 24px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.admissions .requirements-checklist .checklist-item .check-icon i {
  font-size: 0.9rem;
  color: var(--contrast-color);
}

.admissions .requirements-checklist .checklist-item .check-content h5 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
  color: var(--heading-color);
}

.admissions .requirements-checklist .checklist-item .check-content p {
  margin: 0;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.admissions .requirements-checklist .international-note {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 12px;
  border-left: 4px solid var(--accent-color);
}

.admissions .requirements-checklist .international-note i {
  font-size: 1.3rem;
  color: var(--accent-color);
  margin-top: 2px;
}

.admissions .requirements-checklist .international-note h6 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
  color: var(--heading-color);
}

.admissions .requirements-checklist .international-note p {
  margin: 0;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.admissions .tuition-overview h3 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 2rem;
  color: var(--heading-color);
}

.admissions .tuition-overview .tuition-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.admissions .tuition-overview .tuition-card {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.admissions .tuition-overview .tuition-card:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
  box-shadow: 0 8px 30px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.admissions .tuition-overview .tuition-card .card-header {
  padding: 1.2rem 1.5rem;
  background-color: color-mix(in srgb, var(--heading-color), transparent 95%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.admissions .tuition-overview .tuition-card .card-header h4 {
  font-size: 1.1rem;
  margin: 0;
  color: var(--heading-color);
}

.admissions .tuition-overview .tuition-card .card-header .program-type {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.admissions .tuition-overview .tuition-card .pricing-details {
  padding: 1.5rem;
}

.admissions .tuition-overview .tuition-card .price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.admissions .tuition-overview .tuition-card .price-item:last-child {
  border-bottom: none;
}

.admissions .tuition-overview .tuition-card .price-item .label {
  font-size: 0.9rem;
  color: var(--default-color);
}

.admissions .tuition-overview .tuition-card .price-item .amount {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent-color);
}

.admissions .tuition-overview .financial-support {
  padding: 1.5rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 12px;
}

.admissions .tuition-overview .financial-support h5 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  color: var(--heading-color);
}

.admissions .tuition-overview .financial-support p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  line-height: 1.6;
}

.admissions .tuition-overview .financial-support .support-link {
  color: var(--accent-color);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.admissions .tuition-overview .financial-support .support-link:hover {
  gap: 0.8rem;
}

.admissions .tuition-overview .financial-support .support-link i {
  font-size: 0.9rem;
}

.admissions .deadlines-showcase {
  margin-bottom: 4rem;
}

.admissions .deadlines-showcase .showcase-header {
  text-align: center;
  margin-bottom: 3rem;
}

.admissions .deadlines-showcase .showcase-header h3 {
  font-size: 2.2rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.admissions .deadlines-showcase .showcase-header p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.admissions .deadlines-showcase .deadlines-slider {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}

@media (max-width: 992px) {
  .admissions .deadlines-showcase .deadlines-slider {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .admissions .deadlines-showcase .deadlines-slider {
    grid-template-columns: 1fr;
  }
}

.admissions .deadlines-showcase .deadline-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  background-color: var(--surface-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.admissions .deadlines-showcase .deadline-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 30%);
}

.admissions .deadlines-showcase .deadline-card.priority::before {
  background-color: var(--accent-color);
}

.admissions .deadlines-showcase .deadline-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 85%);
}

.admissions .deadlines-showcase .deadline-card .date-badge {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
}

.admissions .deadlines-showcase .deadline-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: var(--heading-color);
}

.admissions .deadlines-showcase .deadline-card p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 1.5rem;
}

.admissions .deadlines-showcase .deadline-card .card-footer {
  font-size: 0.8rem;
  color: var(--accent-color);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.admissions .contact-section .contact-content h3 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

.admissions .contact-section .contact-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 2.5rem;
}

.admissions .contact-section .inquiry-form .form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (max-width: 576px) {
  .admissions .contact-section .inquiry-form .form-group-row {
    grid-template-columns: 1fr;
  }
}

.admissions .contact-section .inquiry-form .form-group.full-width {
  grid-column: 1/-1;
}

.admissions .contact-section .inquiry-form .form-group input,
.admissions .contact-section .inquiry-form .form-group select,
.admissions .contact-section .inquiry-form .form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--default-color);
  background-color: var(--surface-color);
  transition: all 0.3s ease;
}

.admissions .contact-section .inquiry-form .form-group input:focus,
.admissions .contact-section .inquiry-form .form-group select:focus,
.admissions .contact-section .inquiry-form .form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.admissions .contact-section .inquiry-form .form-group input::placeholder,
.admissions .contact-section .inquiry-form .form-group select::placeholder,
.admissions .contact-section .inquiry-form .form-group textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.admissions .contact-section .inquiry-form .form-actions {
  margin-top: 1.5rem;
}

.admissions .contact-section .inquiry-form .form-actions .submit-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.admissions .contact-section .inquiry-form .form-actions .submit-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), var(--heading-color) 15%);
  transform: translateY(-2px);
}

.admissions .contact-section .visit-invitation .visit-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.admissions .contact-section .visit-invitation .visit-image .visit-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: color-mix(in srgb, var(--contrast-color), transparent 10%);
  color: var(--heading-color);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

.admissions .contact-section .visit-invitation .visit-image .visit-overlay i {
  font-size: 1.5rem;
}

.admissions .contact-section .visit-invitation .visit-details h4 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

.admissions .contact-section .visit-invitation .visit-details .visit-options {
  margin-bottom: 2rem;
}

.admissions .contact-section .visit-invitation .visit-details .visit-option {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.admissions .contact-section .visit-invitation .visit-details .visit-option i {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-top: 2px;
}

.admissions .contact-section .visit-invitation .visit-details .visit-option .option-title {
  display: block;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 0.2rem;
}

.admissions .contact-section .visit-invitation .visit-details .visit-option .option-detail {
  display: block;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.admissions .contact-section .visit-invitation .visit-details .schedule-btn {
  display: inline-block;
  background-color: var(--surface-color);
  color: var(--accent-color);
  padding: 0.8rem 2rem;
  border: 2px solid var(--accent-color);
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.admissions .contact-section .visit-invitation .visit-details .schedule-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Slider Section
--------------------------------------------------------------*/
.slider {
  background-color: transparent;
}

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

.slider .swiper-pagination .swiper-pagination-bullet {
  background-color: color-mix(in srgb, var(--default-color) 90%, white 15%);
}

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

.slider .swiper-slide {
  min-height: 500px;
  position: relative;
  display: flex;
  align-items: flex-end;
  background-repeat: no-repeat;
  background-size: cover;
}

.slider .swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, var(--background-color), transparent 50%);
}

@media (max-width: 575px) {
  .slider .swiper-slide {
    min-height: 300px;
  }
}

.slider .swiper-button-prev:after,
.slider .swiper-button-next:after {
  font-size: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.slider .content {
  padding: 60px 80px;
  max-width: 700px;
  position: relative;
}

.slider .content a,
.slider .content h2,
.slider .content p {
  color: var(--default-color);
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid var(--background-color);
  border-bottom: 3px solid var(--background-color);
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  position: relative;
}

.testimonials:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.testimonials .testimonials-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

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

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

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

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid color-mix(in srgb, var(--default-color), transparent 85%);
  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;
  margin: 0 0 15px 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.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(--default-color), transparent 40%);
  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: 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;
  background-color: color-mix(in srgb, var(--default-color), transparent 50%);
  opacity: 0.5;
}

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

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member {
  position: relative;
}

.team .member .pic {
  overflow: hidden;
  margin-bottom: 50px;
}

.team .member .member-info {
  background-color: var(--surface-color);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: -50px;
  left: 20px;
  right: 20px;
  padding: 20px 15px;
  overflow: hidden;
  transition: 0.5s;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
  position: relative;
  padding-bottom: 10px;
}

.team .member h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  bottom: 0;
  left: 0;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.team .member .social {
  position: absolute;
  right: 15px;
  bottom: 15px;
}

.team .member .social a {
  transition: color 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.team .member .social a:hover {
  color: var(--accent-color);
}

.team .member .social i {
  font-size: 16px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
  padding: 40px 40px;
  height: 100%;
  border-radius: 15px;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}

.pricing h4 {
  color: var(--accent-color);
  font-size: 38px;
  font-weight: 700;
  font-family: var(--heading-font);
  margin-bottom: 0;
}

.pricing h4 sup {
  font-size: 18px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 18px;
  font-weight: 500;
}

.pricing .description {
  font-size: 10px;
	margin-bottom: -7px;
}

.pricing .cta-btn {
  border: 1px solid var(--default-color);
  color: var(--default-color);
  display: block;
  text-align: center;
  padding: 10px 35px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  transition: 0.3s;
  margin-top: 20px;
  margin-bottom: 6px;
}

.pricing .cta-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing ul li:last-child {
  padding-bottom: 0;
}

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .featured {
  position: relative;
}

.pricing .featured .popular {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 4px 15px 6px 15px;
  margin: 0;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
}

.pricing .featured .cta-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq {
  padding-top: 60px;
  padding-bottom: 60px;
}

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

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

.faq .faq-container {
  margin-top: 15px;
}

.faq .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;
}

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

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

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

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

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

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

.faq .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);
}

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

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

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

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

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

/*--------------------------------------------------------------
# Get A Quote Section
--------------------------------------------------------------*/
.get-a-quote .quote-bg {
  min-height: 500px;
  background-size: cover;
  background-position: center;
}

.get-a-quote .php-email-form {
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 30px;
  height: 100%;
}

@media (max-width: 575px) {
  .get-a-quote .php-email-form {
    padding: 20px;
  }
}

.get-a-quote .php-email-form h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.get-a-quote .php-email-form h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 20px 0 0 0;
}

.get-a-quote .php-email-form p {
  font-size: 14px;
  margin-bottom: 20px;
}

.get-a-quote .php-email-form input[type=text],
.get-a-quote .php-email-form input[type=email],
.get-a-quote .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 20%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.get-a-quote .php-email-form input[type=text]:focus,
.get-a-quote .php-email-form input[type=email]:focus,
.get-a-quote .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.get-a-quote .php-email-form input[type=text]::placeholder,
.get-a-quote .php-email-form input[type=email]::placeholder,
.get-a-quote .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.get-a-quote .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.get-a-quote .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}