/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Cutive Mono", monospace, "Courier New", Courier, monospace;
  --heading-font: "Yellowtail", cursive, "Cutive", serif, Georgia, serif;
  --heading-serif-font: "Cutive", serif, Georgia, serif;
  --nav-font: "Cutive", serif, Georgia, 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: var(--color-foundation-beige);
  /* Foundation Beige - Background color for the entire website, including individual sections */
  --default-color: var(--color-anchor-gray);
  /* Anchor Gray - Default color used for the majority of the text content across the entire website */
  --heading-color: var(--color-anchor-black);
  /* Anchor Black - Color for headings, subheadings and title throughout the website */
  --accent-color: var(--color-deep-current);
  /* Strong Momentum - 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. */
  /* Additional Style Guide Colors */
  --color-anchor-black: #231f20;
  --color-anchor-gray: #444545;
  --color-foundation-beige: #fffef2;
  --color-strong-momentum: #f26b6d;
  --color-smooth-momentum: #efafb2;
  --color-deep-current: #29afb0;
  --color-clear-current: #65c8cf;
  --color-spark-yellow: #fedc3a;
  --color-silk-yellow: #fff0b3;
  --color-new-leaf: #a1cd49;
  --color-first-leaf: #d8e7a6;
}

/* 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: var(--color-anchor-gray);
  /* Anchor Gray - The default color of the main navmenu links */
  --nav-hover-color: var(--color-deep-current);
  /* Strong Momentum - Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: var(--color-foundation-beige);
  /* Foundation Beige - 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: var(--color-anchor-gray);
  /* Anchor Gray - Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: var(--color-deep-current);
  /* Strong Momentum - 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: var(--color-foundation-beige);
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #3c3c3c;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #565656;
  --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: var(--background-color);
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}
.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(--accent-color);
}
.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--default-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;
  color: var(--default-color);
}
.header .topbar .contact-info i a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}
.header .topbar .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}
.header .topbar .social-links a:hover {
  color: var(--accent-color);
}
.header .branding {
  padding: 10px 0;
}
.header .logo {
  line-height: 1;
}
.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}
.header .logo h1 {
  font-size: 26px;
  padding: 0 0 0 8px;
  margin: 11px 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-left: 8px solid var(--accent-color);
}

/*--------------------------------------------------------------
# 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: 14px;
    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);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }
  .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);
    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;
  position: relative;
}
.footer .footer-newsletter {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 50px 0;
}
.footer .footer-newsletter h4 {
  font-size: 24px;
}
.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  display: flex;
  transition: 0.3s;
  border-radius: 50px;
}
.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}
.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: 100%;
  background-color: var(--surface-color);
  color: var(--default-color);
}
.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}
.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -9px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 50px;
}
.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}
.footer .footer-top {
  padding-top: 50px;
}
.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 20%);
  margin-right: 10px;
  transition: 0.3s;
}
.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}
.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}
.footer .footer-links {
  margin-bottom: 30px;
}
.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}
.footer .footer-links ul li {
  padding: 10px 0;
}
.footer .footer-links ul li:first-child {
  padding-top: 0;
}
.footer .footer-links ul li {
  display: flex;
  align-items: center;
}
.footer .footer-links ul a {
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1;
}
.footer .footer-links ul a:hover {
  color: var(--accent-color);
}
.footer .footer-about a {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
}
.footer .footer-contact p {
  margin-bottom: 5px;
}
.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.footer .copyright p {
  margin-bottom: 0;
}
.footer .credits {
  margin-top: 6px;
  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 {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}
.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}
.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}
.page-title .breadcrumbs ol li + li {
  padding-left: 10px;
}
.page-title .breadcrumbs 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 {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}
.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}
.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
}
.hero .carousel {
  width: 100%;
  min-height: 70vh;
  padding: 0;
  margin: 0;
  background-color: var(--background-color);
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: block;
}
@media (max-height: 400px) {
  .hero .carousel {
    min-height: 100vh;
  }
}
.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero .hero-logo {
  position: relative;
  z-index: 2;
  object-fit: contain;
  max-width: 600px;
  max-height: 200px;
}
.hero .carousel-item {
  position: absolute;
  inset: 0;
  width: 100%;
  min-height: 70vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  opacity: 1;
  visibility: visible;
}
.hero .carousel-item:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 20%);
  position: absolute;
  inset: 0;
  z-index: 2;
}
.hero .carousel-item::before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 20%);
  position: absolute;
  inset: 0;
  z-index: 2;
}
.hero .carousel-container {
  position: absolute;
  inset: 90px 64px 64px 64px;
  display: flex;
  align-items: center;
  flex-direction: column;
  z-index: 3;
  color: var(--heading-color);
}
@media (max-width: 768px) {
  .hero .carousel-container {
    inset: 40px 20px 40px 20px;
  }
}
.hero .carousel-item h2 {
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
  animation: fadeInDown 1s both;
}
.hero .carousel-item h2 span {
  color: var(--accent-color);
}
@media (max-width: 768px) {
  .hero .carousel-item h2 {
    font-size: 30px;
  }
}
.hero .carousel-item h1 {
  margin-bottom: 30px;
  font-size: 36px;
  font-weight: 700;
  animation: fadeInDown 1s both;
}
.hero .carousel-item h1 span {
  color: var(--accent-color);
}
@media (max-width: 768px) {
  .hero .carousel-item h1 {
    font-size: 28px;
    margin-bottom: 20px;
    line-height: 1.2;
  }
}
.hero .carousel-item p {
  animation: fadeInDown 1s both 0.2s;
  font-size: 16px;
}
@media (min-width: 1024px) {
  .hero .carousel-item p {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .hero .carousel-item p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
  }
}
@media (min-width: 1024px) {
  .hero h2,
  .hero p {
    max-width: 60%;
  }
}
.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-serif-font);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  animation: fadeInUp 1s both 0.4s;
}
.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}
@media (max-width: 768px) {
  .hero .btn-get-started {
    font-size: 16px;
    padding: 10px 32px;
  }
}
.hero .featured {
  margin-top: -150px;
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
  z-index: 2;
}
@media (max-height: 768px), (max-width: 1024px) {
  .hero .featured {
    margin-top: 0;
  }
}
.hero .featured-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 35px 25px;
  transition: all 0.3s ease-in-out;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .hero .featured-item {
    padding: 30px 20px;
  }
}
.hero .featured-item:before {
  content: "";
  position: absolute;
  background: var(--accent-color);
  inset: 100% 0 0 0;
  transition: all 0.3s;
  z-index: -1;
}
.hero .featured-item .icon {
  margin-bottom: 15px;
}
.hero .featured-item .icon i {
  color: var(--accent-color);
  font-size: 40px;
  transition: ease-in-out 0.3s;
}
.hero .featured-item h4 {
  font-family: var(--heading-serif-font);
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 22px;
  line-height: 1.3;
}
.hero .featured-item h4 a {
  color: var(--heading-color);
  transition: ease-in-out 0.3s;
}
.hero .featured-item p {
  line-height: 1.6;
  font-size: 16px;
  margin-bottom: 0;
  transition: ease-in-out 0.3s;
  color: var(--default-color);
}
.hero .featured-item:hover h4 a,
.hero .featured-item:hover .icon i,
.hero .featured-item:hover p, .hero .featured-item:hover h3, .hero .featured-item:hover h4, .hero .featured-item:hover h5 {
  color: var(--contrast-color);
}
.hero .featured-item:hover:before {
  background: var(--accent-color);
  inset: 0;
  border-radius: 0px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 1.75rem;
  font-weight: 700;
}
.about .content .fst-italic {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}
.about .content ul {
  list-style: none;
  padding: 0;
}
.about .content ul li {
  padding: 10px 0 0 0;
  display: flex;
}
.about .content ul i {
  color: var(--accent-color);
  margin-right: 0.5rem;
  line-height: 1.2;
  font-size: 1.25rem;
}
.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
  height: 100%;
}
.services .service-item .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: var(--accent-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
  transform-style: preserve-3d;
}
.services .service-item .icon i {
  color: var(--contrast-color);
  font-size: 28px;
  transition: ease-in-out 0.3s;
}
.services .service-item .icon::before {
  position: absolute;
  content: "";
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}
.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
}
.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.services .service-item:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
}
.services .service-item:hover .icon {
  background: var(--surface-color);
}
.services .service-item:hover .icon i {
  color: var(--accent-color);
}
.services .service-item:hover .icon::before {
  background: color-mix(in srgb, var(--background-color), transparent 70%);
}
.services .service-item:hover h3,
.services .service-item:hover p {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
}
.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}
.clients .swiper-wrapper {
  height: auto;
}
.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}
.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# About Me Section
--------------------------------------------------------------*/
.about-me {
  position: relative;
}
.about-me .profile-wrapper {
  position: relative;
}
.about-me .profile-wrapper .profile-image-container {
  position: relative;
  max-width: 450px;
  margin: 0 auto 30px;
}
.about-me .profile-wrapper .profile-image-container .profile-image {
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}
.about-me .profile-wrapper .profile-image-container .experience-badge {
  position: absolute;
  bottom: -20px;
  right: 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 20px 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 50%);
}
.about-me .profile-wrapper .profile-image-container .experience-badge .years {
  display: block;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}
.about-me .profile-wrapper .profile-image-container .experience-badge .text {
  display: block;
  font-size: 12px;
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.about-me .profile-wrapper .quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.about-me .profile-wrapper .quick-facts .fact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
}
.about-me .profile-wrapper .quick-facts .fact-item i {
  color: var(--accent-color);
  font-size: 18px;
}
.about-me .about-content {
  padding-left: 40px;
}
@media (max-width: 992px) {
  .about-me .about-content {
    padding-left: 0;
    margin-top: 50px;
  }
}
.about-me .about-content .intro-text {
  margin-bottom: 40px;
}
.about-me .about-content .intro-text h2 {
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: 700;
}
.about-me .about-content .intro-text h2 .highlight {
  color: var(--accent-color);
  position: relative;
}
.about-me .about-content .intro-text h2 .highlight::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 60%));
  border-radius: 2px;
}
.about-me .about-content .intro-text h3 {
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 400;
  margin-bottom: 25px;
}
.about-me .about-content .intro-text p {
  line-height: 1.2;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 15px;
}
.about-me .about-content .skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 576px) {
  .about-me .about-content .skills-grid {
    grid-template-columns: 1fr;
  }
}
.about-me .about-content .skills-grid .skill-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: var(--surface-color);
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}
.about-me .about-content .skills-grid .skill-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: var(--accent-color);
}
.about-me .about-content .skills-grid .skill-card:hover .skill-icon {
  background: var(--accent-color);
  color: var(--contrast-color);
}
.about-me .about-content .skills-grid .skill-card .skill-icon {
  width: 50px;
  height: 50px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.about-me .about-content .skills-grid .skill-card .skill-info h4 {
  font-size: 16px;
  margin-bottom: 5px;
  font-weight: 600;
}
.about-me .about-content .skills-grid .skill-card .skill-info p {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
  line-height: 1.4;
}
.about-me .about-content .motto-section {
  position: relative;
  padding: 25px 30px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-left: 4px solid var(--accent-color);
  border-radius: 8px;
  margin-bottom: 40px;
}
.about-me .about-content .motto-section i {
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 24px;
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
}
.about-me .about-content .motto-section p {
  margin: 0;
  padding-left: 25px;
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}
.about-me .about-content .cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.about-me .about-content .cta-buttons .btn {
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.about-me .about-content .cta-buttons .btn.btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
}
.about-me .about-content .cta-buttons .btn.btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}
.about-me .about-content .cta-buttons .btn.btn-outline {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}
.about-me .about-content .cta-buttons .btn.btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

/*--------------------------------------------------------------
# About 3 Section
--------------------------------------------------------------*/
.about-3 .section-heading {
  font-size: 2.5rem;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
  font-weight: 700;
}
.about-3 .section-heading:after {
  content: "";
  position: absolute;
  width: 70px;
  height: 3px;
  background: var(--accent-color);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.about-3 .lead {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.about-3 .feature-box {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.about-3 .feature-box:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  z-index: -1;
  transition: height 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  border-radius: 12px;
}
.about-3 .feature-box:hover {
  transform: translateY(-10px);
}
.about-3 .feature-box:hover:before {
  height: 100%;
}
.about-3 .feature-box:hover .icon-container {
  background: var(--accent-color);
  color: var(--contrast-color);
}
.about-3 .feature-box .icon-container {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 85%);
}
.about-3 .feature-box h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--heading-color);
}
.about-3 .feature-box p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 0.95rem;
  line-height: 1.6;
}
.about-3 .about-content-box {
  padding: 2rem;
}
.about-3 .about-content-box h3 {
  font-size: 2rem;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
}
.about-3 .about-content-box p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.about-3 .about-content-box .progress-item {
  margin-bottom: 1.2rem;
}
.about-3 .about-content-box .progress-item .progress-title {
  font-weight: 600;
  color: var(--heading-color);
  font-size: 1rem;
}
.about-3 .about-content-box .progress-item .progress-percent {
  font-weight: 700;
  color: var(--accent-color);
}
.about-3 .about-content-box .progress-item .progress {
  height: 8px;
  border-radius: 4px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  margin-top: 0.5rem;
  overflow: hidden;
}
.about-3 .about-content-box .progress-item .progress .progress-bar {
  background-color: var(--accent-color);
  border-radius: 4px;
}
.about-3 .about-content-box .btn-discover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 30px;
  padding: 0.8rem 2rem;
  font-weight: 600;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.about-3 .about-content-box .btn-discover:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: color-mix(in srgb, var(--accent-color), #000 15%);
  transition: width 0.3s ease;
  z-index: -1;
  border-radius: 30px;
}
.about-3 .about-content-box .btn-discover:hover {
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 80%);
}
.about-3 .about-content-box .btn-discover:hover:before {
  width: 100%;
}
.about-3 .about-image-grid {
  position: relative;
  height: 540px;
  margin: 0 2rem;
}
.about-3 .about-image-grid .img-grid-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 350px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  z-index: 1;
}
.about-3 .about-image-grid .img-grid-secondary {
  position: absolute;
  bottom: 0;
  right: 30%;
  width: 50%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  z-index: 2;
}
.about-3 .about-image-grid .img-grid-tertiary {
  position: absolute;
  left: 0;
  bottom: 70px;
  width: 40%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  z-index: 3;
}
.about-3 .about-image-grid .experience-badge {
  position: absolute;
  right: 10px;
  bottom: 30px;
  width: 120px;
  height: 120px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--contrast-color);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  z-index: 4;
}
.about-3 .about-image-grid .experience-badge .years {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.2rem;
}
.about-3 .about-image-grid .experience-badge .text {
  font-size: 0.8rem;
  text-align: center;
  max-width: 90px;
  line-height: 1.2;
}
@media (max-width: 1199px) {
  .about-3 .about-image-grid {
    height: 480px;
  }
  .about-3 .about-image-grid .img-grid-main {
    height: 300px;
  }
  .about-3 .about-image-grid .img-grid-secondary {
    height: 200px;
  }
  .about-3 .about-image-grid .img-grid-tertiary {
    height: 220px;
  }
}
@media (max-width: 991px) {
  .about-3 .section-heading {
    font-size: 2.2rem;
  }
  .about-3 .about-content-box {
    padding: 1.5rem;
    margin-top: 2rem;
  }
  .about-3 .about-content-box h3 {
    font-size: 1.8rem;
  }
  .about-3 .about-image-grid {
    height: 450px;
    margin: 0 auto;
    max-width: 500px;
  }
  .about-3 .about-image-grid .experience-badge {
    width: 100px;
    height: 100px;
  }
  .about-3 .about-image-grid .experience-badge .years {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .about-3 .section-heading {
    font-size: 1.8rem;
  }
  .about-3 .feature-box {
    padding: 1.8rem 1rem;
  }
  .about-3 .feature-box .icon-container {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  .about-3 .about-image-grid {
    height: 400px;
    margin-bottom: 2rem;
  }
  .about-3 .about-image-grid .img-grid-main {
    width: 75%;
    height: 250px;
  }
  .about-3 .about-image-grid .img-grid-secondary {
    width: 55%;
    height: 180px;
  }
  .about-3 .about-image-grid .img-grid-tertiary {
    width: 40%;
    height: 180px;
  }
}
.about-3 .text-accent {
  color: var(--accent-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.875rem;
}
.about-3 .about-title {
  font-weight: 700;
}
.about-3 .feature-list {
  list-style-type: none;
  padding-left: 0;
}
.about-3 .feature-list li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}
.about-3 .feature-list li i {
  margin-right: 0.5rem;
  font-size: 1.25rem;
}
.about-3 .btn-accent {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
.about-3 .btn-accent:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
}
.about-3 .image-wrapper {
  position: relative;
}
.about-3 .image-wrapper img {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.about-3 .image-wrapper img:last-child {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.about-3 .motto-section {
  position: relative;
  padding: 25px 30px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-left: 4px solid var(--accent-color);
  border-radius: 8px;
  margin-bottom: 40px;
}
.about-3 .motto-section i {
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 24px;
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
}
.about-3 .motto-section p {
  margin: 0;
  padding-left: 25px;
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us {
  padding-top: 80px;
  background: linear-gradient(180deg, var(--background-color) 0%, color-mix(in srgb, var(--accent-color), transparent 97%) 100%);
  padding-bottom: 80px;
}
.why-us .intro-content .badge {
  display: inline-block;
  padding: 6px 16px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}
.why-us .intro-content h3 {
  font-weight: 800;
}
.why-us .intro-content h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--heading-color);
}
@media (max-width: 768px) {
  .why-us .intro-content h2 {
    font-size: 32px;
  }
}
.why-us .intro-content .lead {
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 40px;
}
.why-us .intro-content .stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 768px) {
  .why-us .intro-content .stats-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.why-us .intro-content .stats-grid .stat-item .stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.why-us .intro-content .stats-grid .stat-item .stat-label {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}
.why-us .showcase-image {
  text-align: center;
}
.why-us .showcase-image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.08));
}
.why-us .value-card {
  background: var(--surface-color);
  padding: 32px;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
}
.why-us .value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}
.why-us .value-card.featured {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%), color-mix(in srgb, var(--accent-color), transparent 90%));
  border-color: var(--accent-color);
}
.why-us .value-card.featured .featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 12px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}
.why-us .value-card .icon-box {
  width: 64px;
  height: 64px;
  background: var(--accent-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.why-us .value-card .icon-box i {
  font-size: 32px;
  color: var(--contrast-color);
}
.why-us .value-card h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--heading-color);
}
.why-us .value-card p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 15px;
}
.why-us .value-card .learn-more {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}
.why-us .value-card .learn-more:hover {
  gap: 12px;
}
.why-us .value-card .learn-more i {
  font-size: 14px;
}
.why-us .capabilities-content h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--heading-color);
}
@media (max-width: 768px) {
  .why-us .capabilities-content h3 {
    font-size: 28px;
  }
}
.why-us .capabilities-content > p {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  margin-bottom: 32px;
}
.why-us .capabilities-content .capability-list {
  margin-bottom: 40px;
}
.why-us .capabilities-content .capability-list .capability-item {
  margin-bottom: 28px;
}
.why-us .capabilities-content .capability-list .capability-item .capability-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.why-us .capabilities-content .capability-list .capability-item .capability-header i {
  font-size: 24px;
  color: var(--accent-color);
  flex-shrink: 0;
}
.why-us .capabilities-content .capability-list .capability-item .capability-header h5 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: var(--heading-color);
}
.why-us .capabilities-content .capability-list .capability-item p {
  margin: 0;
  padding-left: 36px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.5;
  font-size: 15px;
}
.why-us .capabilities-content .cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.why-us .capabilities-content .cta-buttons .btn {
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  border: 2px solid transparent;
}
.why-us .capabilities-content .cta-buttons .btn.btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
}
.why-us .capabilities-content .cta-buttons .btn.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}
.why-us .capabilities-content .cta-buttons .btn.btn-secondary {
  background: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}
.why-us .capabilities-content .cta-buttons .btn.btn-secondary:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}
@media (max-width: 576px) {
  .why-us .capabilities-content .cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}
.why-us .process-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.why-us .process-visual .process-step {
  background: var(--surface-color);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
}
.why-us .process-visual .process-step:hover {
  border-color: var(--accent-color);
  transform: translateX(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.why-us .process-visual .process-step .step-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #8b5cf6 40%));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: var(--contrast-color);
  flex-shrink: 0;
}
.why-us .process-visual .process-step .step-content h6 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 4px 0;
  color: var(--heading-color);
}
.why-us .process-visual .process-step .step-content p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
}
@media (max-width: 991px) {
  .why-us .intro-content,
  .why-us .capabilities-content {
    margin-bottom: 40px;
  }
}

/*--------------------------------------------------------------
# Features 2 Section
--------------------------------------------------------------*/
.features-2 .feature-card {
  background: var(--surface-color);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
}
.features-2 .feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}
.features-2 .feature-card .icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #8b5cf6 30%));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  position: relative;
}
.features-2 .feature-card .icon-wrapper::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  opacity: 0.3;
  transform: scale(1.2);
  z-index: 0;
}
.features-2 .feature-card .icon-wrapper i {
  font-size: 36px;
  color: var(--contrast-color);
}
.features-2 .feature-card h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}
.features-2 .feature-card p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.2;
  margin-bottom: 25px;
}
.features-2 .feature-card .feature-stats {
  padding-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.features-2 .feature-card .feature-stats .stat-number {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
}
.features-2 .feature-card .feature-stats .stat-label {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}
.features-2 .feature-showcase {
  text-align: center;
}
.features-2 .feature-showcase img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}
.features-2 .feature-content {
  padding-left: 30px;
}
.features-2 .feature-content h3 {
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--heading-color);
  line-height: 1.2;
}
.features-2 .feature-content .lead {
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 40px;
  line-height: 1.6;
}
.features-2 .feature-content .feature-list {
  margin-bottom: 40px;
}
.features-2 .feature-content .feature-list .feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}
.features-2 .feature-content .feature-list .feature-item .feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 80%), color-mix(in srgb, var(--accent-color), transparent 90%));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}
.features-2 .feature-content .feature-list .feature-item .feature-icon i {
  color: var(--accent-color);
  font-size: 24px;
}
.features-2 .feature-content .feature-list .feature-item .feature-text h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--heading-color);
}
.features-2 .feature-content .feature-list .feature-item .feature-text p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  line-height: 1.2;
}
.features-2 .feature-content .cta-wrapper {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.features-2 .feature-content .cta-wrapper .btn {
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.features-2 .feature-content .cta-wrapper .btn.btn-primary {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #8b5cf6 30%));
  color: var(--contrast-color);
  border-color: var(--accent-color);
}
.features-2 .feature-content .cta-wrapper .btn.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
}
.features-2 .feature-content .cta-wrapper .btn.btn-outline {
  background: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}
.features-2 .feature-content .cta-wrapper .btn.btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}
@media (max-width: 991px) {
  .features-2 .feature-content {
    padding-left: 0;
    padding-top: 40px;
  }
}
@media (max-width: 768px) {
  .features-2 .feature-card {
    padding: 30px 20px;
  }
  .features-2 .feature-card .icon-wrapper {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }
  .features-2 .feature-card .icon-wrapper i {
    font-size: 30px;
  }
  .features-2 .feature-card h4 {
    font-size: 20px;
  }
  .features-2 .feature-card .feature-stats .stat-number {
    font-size: 28px;
  }
  .features-2 .feature-content h3 {
    font-size: 28px;
  }
  .features-2 .feature-content .cta-wrapper .btn {
    padding: 12px 25px;
    font-size: 14px;
    width: 100%;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.features .feature-card {
  display: flex;
  gap: 2rem;
  position: relative;
  padding: 2.5rem;
  background: var(--surface-color);
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
  overflow: hidden;
}
.features .feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.features .feature-card:hover .icon-wrapper img {
  transform: scale(1.1);
}
.features .feature-card:hover .feature-number {
  color: var(--accent-color);
}
.features .feature-card:nth-child(even) {
  flex-direction: row-reverse;
}
.features .feature-card:nth-child(even) .content {
  text-align: right;
}
.features .feature-card:nth-child(even) .feature-number {
  left: auto;
  right: 0;
}
.features .icon-wrapper {
  flex: 0 0 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.features .icon-wrapper img {
  max-width: 120px;
  transition: transform 0.4s ease-out;
}
.features .content {
  flex: 1;
  position: relative;
}
.features .content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  position: relative;
  z-index: 2;
}
.features .content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.7;
  margin: 0;
  position: relative;
  z-index: 2;
}
.features .feature-number {
  font-size: 5rem;
  font-weight: 800;
  position: absolute;
  top: -2.5rem;
  left: 0;
  opacity: 0.08;
  color: var(--heading-color);
  transition: color 0.3s ease;
  font-family: var(--heading-font);
  line-height: 1;
  z-index: 1;
}
@media (max-width: 991px) {
  .features .feature-card {
    padding: 2rem;
    gap: 1.5rem;
  }
  .features .feature-card .icon-wrapper {
    flex: 0 0 100px;
  }
  .features .feature-card .icon-wrapper img {
    max-width: 100px;
  }
  .features .feature-card .feature-number {
    font-size: 4rem;
    top: -2rem;
  }
  .features .feature-card .content h3 {
    font-size: 1.3rem;
  }
}
@media (max-width: 767px) {
  .features .feature-card,
  .features .feature-card:nth-child(even) {
    flex-direction: column;
    padding: 1.75rem;
  }
  .features .feature-card .content,
  .features .feature-card:nth-child(even) .content {
    text-align: center;
  }
  .features .feature-card .icon-wrapper,
  .features .feature-card:nth-child(even) .icon-wrapper {
    margin-bottom: 1rem;
  }
  .features .feature-card .feature-number,
  .features .feature-card:nth-child(even) .feature-number {
    font-size: 3.5rem;
    top: -1.75rem;
    left: 50%;
    transform: translateX(-50%);
  }
}

/*--------------------------------------------------------------
# Admissions Section
--------------------------------------------------------------*/
.admissions h3 {
  font-weight: 800;
}
.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.2;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}
.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(4, 1fr);
  gap: 2rem;
  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: 12.5%;
  right: 12.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(4, 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);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  position: relative;
  padding: 100px 0;
  isolation: isolate;
  background: linear-gradient(180deg, var(--background-color) 0%, color-mix(in srgb, var(--accent-color), transparent 96%) 50%, var(--background-color) 100%);
}
.call-to-action .container {
  position: relative;
}
.call-to-action h2 {
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.call-to-action .lead {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
}
.call-to-action .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.call-to-action .btn {
  padding: 12px 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.call-to-action .btn:hover {
  transform: translateY(-2px);
}
.call-to-action .btn-primary {
  padding: 14px 36px;
  font-size: 1.1rem;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 4px 14px color-mix(in srgb, var(--accent-color), transparent 60%);
}
.call-to-action .btn-primary i {
  margin-right: 0.35rem;
}
.call-to-action .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 10%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 10%);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}
.call-to-action .btn-outline-primary {
  color: var(--accent-color);
  border-color: var(--accent-color);
}
.call-to-action .btn-outline-primary:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}
.call-to-action .scribble {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  opacity: 0.22;
  animation: float 6s ease-in-out infinite;
}
.call-to-action .scribble::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 6px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  background-color: transparent;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}
.call-to-action .scribble-1 {
  width: 150px;
  height: 150px;
  top: -30px;
  left: 5%;
  animation-delay: 0s;
}
.call-to-action .scribble-1::before {
  border-width: 8px;
}
.call-to-action .scribble-2 {
  width: 120px;
  height: 120px;
  top: 20%;
  right: 10%;
  animation-delay: -2s;
}
.call-to-action .scribble-2::before {
  border-width: 7px;
}
.call-to-action .scribble-3 {
  width: 100px;
  height: 100px;
  bottom: -20px;
  left: 15%;
  animation-delay: -4s;
}
.call-to-action .scribble-3::before {
  border-width: 6px;
}
@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}
@media (max-width: 768px) {
  .call-to-action {
    padding: 60px 0;
  }
  .call-to-action h2 {
    font-size: 2.5rem;
  }
  .call-to-action .lead {
    font-size: 1.1rem;
  }
  .call-to-action .cta-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }
  .call-to-action .cta-buttons .btn {
    display: block;
    width: 100%;
    margin: 0;
  }
  .call-to-action .scribble {
    transform: scale(0.7);
  }
}

/*--------------------------------------------------------------
# Services 2 Section
--------------------------------------------------------------*/
.services-2 .service-item {
  background-color: var(--surface-color);
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
  height: 100%;
}
.services-2 .service-item .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: var(--accent-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
  transform-style: preserve-3d;
}
.services-2 .service-item .icon i {
  color: var(--contrast-color);
  font-size: 28px;
  transition: ease-in-out 0.3s;
}
.services-2 .service-item .icon::before {
  position: absolute;
  content: "";
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}
.services-2 .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
}
.services-2 .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.services-2 .service-item:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
}
.services-2 .service-item:hover .icon {
  background: var(--surface-color);
}
.services-2 .service-item:hover .icon i {
  color: var(--accent-color);
}
.services-2 .service-item:hover .icon::before {
  background: color-mix(in srgb, var(--background-color), transparent 70%);
}
.services-2 .service-item:hover h3,
.services-2 .service-item:hover p {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.skills .content h3 {
  font-size: 2rem;
  font-weight: 700;
}
.skills .content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}
.skills .content p:last-child {
  margin-bottom: 0;
}
.skills .content ul {
  list-style: none;
  padding: 0;
}
.skills .content ul li {
  padding-bottom: 10px;
}
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}
.skills .progress .skill {
  color: var(--default-color);
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: var(--heading-font);
}
.skills .progress .skill .val {
  float: right;
  font-style: normal;
}
.skills .progress-bar-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  height: 10px;
}
.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}
.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}
.portfolio .portfolio-filters li:hover, .portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}
.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}
.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}
@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}
.portfolio .portfolio-content {
  position: relative;
  overflow: hidden;
}
.portfolio .portfolio-content img {
  transition: 0.3s;
}
.portfolio .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}
.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
  background-color: var(--accent-color);
}
.portfolio .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}
.portfolio .portfolio-content .portfolio-info .preview-link,
.portfolio .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}
.portfolio .portfolio-content .portfolio-info .preview-link:hover,
.portfolio .portfolio-content .portfolio-info .details-link:hover {
  color: var(--accent-color);
}
.portfolio .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}
.portfolio .portfolio-content:hover .portfolio-info {
  opacity: 1;
}
.portfolio .portfolio-content:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Clients 2 Section
--------------------------------------------------------------*/
.clients-2 .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
}
.clients-2 .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}
.clients-2 .swiper-wrapper {
  height: auto;
}
.clients-2 .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.clients-2 .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}
.clients-2 .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}
.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}
.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}
.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}
.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}
.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}
.portfolio-details .portfolio-description {
  padding-top: 30px;
}
.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}
.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  border-radius: 5px;
  transition: 0.5s;
  padding: 30px;
  height: 100%;
}
@media (max-width: 468px) {
  .team .team-member {
    flex-direction: column;
    justify-content: center !important;
    align-items: center !important;
  }
}
.team .team-member .pic {
  overflow: hidden;
  width: 150px;
  border-radius: 50%;
  flex-shrink: 0;
}
.team .team-member .pic img {
  transition: ease-in-out 0.3s;
}
.team .team-member:hover {
  transform: translateY(-10px);
}
.team .team-member .member-info {
  padding-left: 30px;
}
@media (max-width: 468px) {
  .team .team-member .member-info {
    padding: 30px 0 0 0;
    text-align: center;
  }
}
.team .team-member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
}
.team .team-member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}
.team .team-member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
  bottom: 0;
  left: 0;
}
@media (max-width: 468px) {
  .team .team-member span::after {
    left: calc(50% - 25px);
  }
}
.team .team-member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}
.team .team-member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: start;
  width: 100%;
}
@media (max-width: 468px) {
  .team .team-member .social {
    justify-content: center;
  }
}
.team .team-member .social a {
  background: color-mix(in srgb, var(--default-color), transparent 94%);
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 36px;
  height: 36px;
}
.team .team-member .social a i {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 16px;
  margin: 0 2px;
}
.team .team-member .social a:hover {
  background: var(--accent-color);
}
.team .team-member .social a:hover i {
  color: var(--contrast-color);
}
.team .team-member .social a + a {
  margin-left: 8px;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing {
  padding: 60px 0 120px 0;
}
.pricing .section-title {
  margin-bottom: 40px;
}
.pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  padding: 60px 40px;
  height: 100%;
  position: relative;
  border-radius: 15px;
}
.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
  text-align: center;
}
.pricing .icon {
  margin: 30px auto 20px auto;
  width: 70px;
  height: 70px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  transform-style: preserve-3d;
}
.pricing .icon i {
  color: var(--background-color);
  font-size: 28px;
  transition: ease-in-out 0.3s;
  line-height: 0;
}
.pricing .icon::before {
  position: absolute;
  content: "";
  height: 86px;
  width: 86px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}
.pricing .icon::after {
  position: absolute;
  content: "";
  height: 102px;
  width: 102px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-2px);
}
.pricing h4 {
  font-size: 48px;
  color: var(--accent-color);
  font-weight: 700;
  font-family: var(--heading-font);
  margin-bottom: 25px;
  text-align: center;
}
.pricing h4 sup {
  font-size: 28px;
}
.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 18px;
  font-weight: 400;
}
.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  text-align: left;
  line-height: 20px;
}
.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}
.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.pricing ul .na span {
  text-decoration: line-through;
}
.pricing .buy-btn {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  padding: 8px 40px 10px 40px;
  border-radius: 50px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  transition: none;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--heading-font);
  transition: 0.3s;
}
.pricing .buy-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}
.pricing .featured {
  z-index: 10;
  border: 3px solid var(--accent-color);
}
@media (min-width: 992px) {
  .pricing .featured {
    transform: scale(1.15);
  }
}

/*--------------------------------------------------------------
# Testimonials 2 Section
--------------------------------------------------------------*/
.testimonials-2 .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.1);
  padding: 30px;
  position: relative;
  height: 100%;
}
.testimonials-2 .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}
.testimonials-2 .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}
.testimonials-2 .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}
.testimonials-2 .testimonial-item .stars {
  margin: 10px 0;
}
.testimonials-2 .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}
.testimonials-2 .testimonial-item .quote-icon-left,
.testimonials-2 .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}
.testimonials-2 .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}
.testimonials-2 .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}
.testimonials-2 .testimonial-item p {
  font-style: italic;
  margin: 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts {
  padding-top: 30px;
}
.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
}
.blog-posts .post-img {
  max-height: 440px;
  margin: -30px -30px 0 -30px;
  overflow: hidden;
}
.blog-posts .title {
  font-size: 24px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}
.blog-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}
.blog-posts .title a:hover {
  color: var(--accent-color);
}
.blog-posts .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}
.blog-posts .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}
.blog-posts .meta-top ul li + li {
  padding-left: 20px;
}
.blog-posts .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}
.blog-posts .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}
.blog-posts .content {
  margin-top: 20px;
}
.blog-posts .content .read-more {
  text-align: right;
}
.blog-posts .content .read-more a {
  background: var(--accent-color);
  color: var(--contrast-color);
  display: inline-block;
  padding: 8px 30px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}
.blog-posts .content .read-more a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}
.blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}
.blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}
.blog-pagination li a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-pagination li a.active, .blog-pagination li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}
.blog-pagination li a.active a, .blog-pagination li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  padding-bottom: 30px;
}
.blog-details .article {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}
.blog-details .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}
.blog-details .content {
  margin-top: 20px;
}
.blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}
.blog-details .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}
.blog-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}
.blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}
.blog-details .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}
.blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}
.blog-details .meta-top ul li + li {
  padding-left: 20px;
}
.blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}
.blog-details .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}
.blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.blog-details .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}
.blog-details .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}
.blog-details .meta-bottom a:hover {
  color: var(--accent-color);
}
.blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}
.blog-details .meta-bottom .cats li {
  display: inline-block;
}
.blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}
.blog-details .meta-bottom .tags li {
  display: inline-block;
}
.blog-details .meta-bottom .tags li + li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}
.blog-details .meta-bottom .share {
  font-size: 16px;
}
.blog-details .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Author Section
--------------------------------------------------------------*/
.blog-author {
  padding: 10px 0 40px 0;
}
.blog-author .author-container {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.blog-author img {
  max-width: 120px;
  margin-right: 20px;
}
.blog-author h4 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 0px;
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}
.blog-author .social-links {
  margin: 0 10px 10px 0;
}
.blog-author .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-right: 5px;
}
.blog-author p {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
  padding: 10px 0;
}
.blog-comments .comments-count {
  font-weight: bold;
}
.blog-comments .comment {
  margin-top: 30px;
  position: relative;
}
.blog-comments .comment .comment-img {
  margin-right: 14px;
}
.blog-comments .comment .comment-img img {
  width: 60px;
}
.blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}
.blog-comments .comment h5 a {
  font-weight: bold;
  color: var(--default-color);
  transition: 0.3s;
}
.blog-comments .comment h5 a:hover {
  color: var(--accent-color);
}
.blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}
.blog-comments .comment h5 .reply i {
  font-size: 20px;
}
.blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 5px;
}
.blog-comments .comment.comment-reply {
  padding-left: 40px;
}

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
  padding-top: 10px;
}
.comment-form form {
  background-color: var(--surface-color);
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.comment-form form h4 {
  font-weight: bold;
  font-size: 22px;
}
.comment-form form p {
  font-size: 14px;
}
.comment-form form input {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 10px;
}
.comment-form form input:focus {
  color: var(--default-color);
  background-color: var(--surface-color);
  box-shadow: none;
  border-color: var(--accent-color);
}
.comment-form form input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}
.comment-form form textarea {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  height: 120px;
}
.comment-form form textarea:focus {
  color: var(--default-color);
  box-shadow: none;
  border-color: var(--accent-color);
  background-color: var(--surface-color);
}
.comment-form form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}
.comment-form form .form-group {
  margin-bottom: 25px;
}
.comment-form form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}
.comment-form form .btn-primary:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background-color: var(--surface-color);
  padding: 20px 0 30px 0;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}
.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}
.contact .info-item h3 {
  font-size: 20px;
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}
.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}
.contact .php-email-form {
  background-color: var(--surface-color);
  height: 100%;
  padding: 30px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}
@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}
.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}
.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}
.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}
.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  background-color: var(--surface-color);
  padding: 30px;
  margin: 30px 0 30px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.widget-item {
  margin-bottom: 40px;
}
.widget-item:last-child {
  margin-bottom: 0;
}

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  padding: 3px 10px;
  position: relative;
}
.search-widget form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}
.search-widget form input[type=text]:focus {
  outline: none;
}
.search-widget form button {
  background: var(--accent-color);
  color: var(--contrast-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}
.search-widget form button i {
  line-height: 0;
}
.search-widget form button:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.categories-widget ul li {
  padding-bottom: 10px;
}
.categories-widget ul li:last-child {
  padding-bottom: 0;
}
.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}
.categories-widget ul a:hover {
  color: var(--accent-color);
}
.categories-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 15px;
}
.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}
.recent-posts-widget .post-item img {
  width: 80px;
  margin-right: 15px;
}
.recent-posts-widget .post-item h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}
.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}
.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}
.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tags-widget {
  margin-bottom: -10px;
}
.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tags-widget ul li {
  display: inline-block;
}
.tags-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
  display: inline-block;
  transition: 0.3s;
}
.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 1px solid var(--accent-color);
}
.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}

.hero-3 {
  width: 100%;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
}
.hero-3 h1 {
  margin: 0;
  font-size: clamp(48px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.15;
}
.hero-3 h1 .text-deep-current {
  font-weight: 700;
}
.hero-3 p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 8px 0 36px 0;
  font-size: 1.25rem;
  font-weight: 400;
}
.hero-3 .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: 50px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}
.hero-3 .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-3 .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
}
.hero-3 .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}
.hero-3 .btn-watch-video:hover {
  color: var(--accent-color);
}
.hero-3 .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}
.hero-3 .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
@media (max-width: 640px) {
  .hero-3 h1 {
    font-size: 28px;
    line-height: 1.2;
  }
  .hero-3 p {
    font-size: 1.125rem;
    line-height: 1.5;
    margin-bottom: 30px;
  }
  .hero-3 .btn-get-started,
  .hero-3 .btn-watch-video {
    font-size: 13px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
p {
  font-size: 1.15rem;
  line-height: 1.2;
}

li {
  font-size: 1.15rem;
  line-height: 1.2;
}

.cta-title {
  margin-bottom: 30px;
  padding-bottom: 10px;
  position: relative;
}
.cta-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  position: absolute;
}
.cta-title.cta-title-left::after {
  margin-left: 0;
  margin-right: auto;
}

.cutive-heading-font {
  font-family: var(--heading-serif-font) !important;
}

.yellowtail-font {
  font-family: var(--heading-font) !important;
}

.text-strong-momentum {
  color: var(--color-strong-momentum) !important;
}

.text-deep-current {
  color: var(--color-deep-current) !important;
}

.text-new-leaf {
  color: var(--color-new-leaf) !important;
}

/* Systems Strategy page: readability */
.systems-strategy-page .main p,
.systems-strategy-page .main li {
  line-height: 1.65;
}
.systems-strategy-page .main p {
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
}
.systems-strategy-page .main {
  /* Constrain line length for intro / long copy blocks */
}
.systems-strategy-page .main .section-prose,
.systems-strategy-page .main .readable-width {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}
.systems-strategy-page .main .section-intro {
  font-size: 1.125rem;
  line-height: 1.65;
  margin-bottom: 0;
}
.systems-strategy-page .main {
  /* Section headings: weight and size for scanability */
}
.systems-strategy-page .main .section h2.cutive-heading-font {
  font-weight: 800;
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
}
.systems-strategy-page .main {
  /* Optional: subtle hero background for this page only */
}
.systems-strategy-page .main .hero-3 {
  background: linear-gradient(180deg, color-mix(in srgb, var(--color-deep-current), transparent 98%) 0%, var(--background-color) 100%);
}
.systems-strategy-page .main {
  /* Extra padding for Outcomes and CTA so final CTAs feel spacious */
}
.systems-strategy-page .main #outcomes.section,
.systems-strategy-page .main #call-to-action.section {
  padding-top: 80px;
  padding-bottom: 80px;
}
.systems-strategy-page .main {
  /* Mid-page CTA: make "Explore the Paper Chain Framework" more visible */
}
.systems-strategy-page .main #process-practice .cta-pill-link {
  padding: 14px 28px;
  font-size: 1.05rem;
}

.systems-strategy-page .feature-list {
  list-style: none;
  padding-left: 0;
}
.systems-strategy-page .feature-list li {
  padding: 0.75rem 0;
  display: flex;
  align-items: flex-start;
  line-height: 1.5;
  font-size: 1.05rem;
}
.systems-strategy-page .feature-list li i {
  margin-right: 0.5rem;
  line-height: 1.2;
  font-size: 1.25rem;
  color: var(--color-deep-current);
  flex-shrink: 0;
}

/* Workshops page: readability and layout (mirrors Systems Strategy) */
.workshops-page .main p,
.workshops-page .main li {
  line-height: 1.65;
}
.workshops-page .main p {
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
}
.workshops-page .main .section-prose,
.workshops-page .main .readable-width {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}
.workshops-page .main .section-intro {
  font-size: 1.125rem;
  line-height: 1.65;
  margin-bottom: 0;
}
.workshops-page .main .section h2.cutive-heading-font {
  font-weight: 800;
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
}
.workshops-page .main .hero-3 {
  background: linear-gradient(180deg, color-mix(in srgb, var(--color-strong-momentum), transparent 98%) 0%, var(--background-color) 100%);
}
.workshops-page .main #outcomes.section,
.workshops-page .main #call-to-action.section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.workshops-page .feature-list {
  list-style: none;
  padding-left: 0;
}
.workshops-page .feature-list li {
  padding: 0.75rem 0;
  display: flex;
  align-items: flex-start;
  line-height: 1.5;
  font-size: 1.05rem;
}
.workshops-page .feature-list li i {
  margin-right: 0.5rem;
  line-height: 1.2;
  font-size: 1.25rem;
  color: var(--color-strong-momentum);
  flex-shrink: 0;
}

/* Workshops page CTA: strong-momentum buttons, pill style */
.workshops-page #call-to-action .btn-primary {
  background-color: var(--color-strong-momentum);
  border-color: var(--color-strong-momentum);
  color: #fff;
  padding: 14px 36px;
  font-size: 1.1rem;
  border-radius: 50px;
  box-shadow: 0 4px 14px color-mix(in srgb, var(--color-strong-momentum), transparent 60%);
}
.workshops-page #call-to-action .btn-primary:hover {
  background-color: color-mix(in srgb, var(--color-strong-momentum), transparent 15%);
  border-color: color-mix(in srgb, var(--color-strong-momentum), transparent 15%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--color-strong-momentum), transparent 70%);
}
.workshops-page #call-to-action .btn-outline-primary {
  color: var(--color-strong-momentum);
  border-color: var(--color-strong-momentum);
  border-width: 2px;
  border-radius: 50px;
  padding: 14px 36px;
  font-size: 1.1rem;
}
.workshops-page #call-to-action .btn-outline-primary:hover {
  background-color: var(--color-strong-momentum);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--color-strong-momentum), transparent 70%);
}

/* Speaking & Training page: readability and layout (mirrors other service pages) */
.speaking-training-page .main p,
.speaking-training-page .main li {
  line-height: 1.65;
}
.speaking-training-page .main p {
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
}
.speaking-training-page .main .section-prose,
.speaking-training-page .main .readable-width {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}
.speaking-training-page .main .section-intro {
  font-size: 1.125rem;
  line-height: 1.65;
  margin-bottom: 0;
}
.speaking-training-page .main .section h2.cutive-heading-font {
  font-weight: 800;
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
}
.speaking-training-page .main .hero-3 {
  background: linear-gradient(180deg, color-mix(in srgb, var(--color-new-leaf), transparent 98%) 0%, var(--background-color) 100%);
}
.speaking-training-page .main #call-to-action.section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.speaking-training-page .feature-list {
  list-style: none;
  padding-left: 0;
}
.speaking-training-page .feature-list li {
  padding: 0.75rem 0;
  display: flex;
  align-items: flex-start;
  line-height: 1.5;
  font-size: 1.05rem;
}
.speaking-training-page .feature-list li i {
  margin-right: 0.5rem;
  line-height: 1.2;
  font-size: 1.25rem;
  color: var(--color-new-leaf);
  flex-shrink: 0;
}

/* Speaking & Training page CTA: new-leaf buttons, pill style */
.speaking-training-page #call-to-action .btn-primary {
  background-color: var(--color-new-leaf);
  border-color: var(--color-new-leaf);
  color: #fff;
  padding: 14px 36px;
  font-size: 1.1rem;
  border-radius: 50px;
  box-shadow: 0 4px 14px color-mix(in srgb, var(--color-new-leaf), transparent 60%);
}
.speaking-training-page #call-to-action .btn-primary:hover {
  background-color: color-mix(in srgb, var(--color-new-leaf), transparent 15%);
  border-color: color-mix(in srgb, var(--color-new-leaf), transparent 15%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--color-new-leaf), transparent 70%);
}
.speaking-training-page #call-to-action .btn-outline-primary {
  color: var(--color-new-leaf);
  border-color: var(--color-new-leaf);
  border-width: 2px;
  border-radius: 50px;
  padding: 14px 36px;
  font-size: 1.1rem;
}
.speaking-training-page #call-to-action .btn-outline-primary:hover {
  background-color: var(--color-new-leaf);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--color-new-leaf), transparent 70%);
}

/* Resources page: readability and layout (mirrors other service pages) */
.resources-page .main p,
.resources-page .main li {
  line-height: 1.65;
}
.resources-page .main p {
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
}
.resources-page .main .section-prose,
.resources-page .main .readable-width {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}
.resources-page .main .section-intro {
  font-size: 1.125rem;
  line-height: 1.65;
  margin-bottom: 0;
}
.resources-page .main .section h2.cutive-heading-font {
  font-weight: 800;
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
}
.resources-page .main .hero-3 {
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent-color), transparent 98%) 0%, var(--background-color) 100%);
}
.resources-page .main #call-to-action.section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.resources-page .feature-list {
  list-style: none;
  padding-left: 0;
}
.resources-page .feature-list li {
  padding: 0.75rem 0;
  display: flex;
  align-items: flex-start;
  line-height: 1.5;
  font-size: 1.05rem;
}
.resources-page .feature-list li i {
  margin-right: 0.5rem;
  line-height: 1.2;
  font-size: 1.25rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

/* Paper Chain Section Styles */
.paper-chain-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding: 2rem 0;
}
@media (min-width: 992px) and (max-width: 1439px) {
  .paper-chain-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding: 0 20px;
  }
}
@media (max-width: 991px) {
  .paper-chain-container {
    flex-direction: column;
    gap: 0;
    align-items: center;
  }
}

.paper-chain-item {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background-color: white;
  /* White background as requested */
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  padding: 60px 25px 25px 25px;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, z-index 0s;
  margin-left: -30px;
  /* Overlap effect */
  border: 15px solid var(--surface-color);
  /* Default border, overridden below */
}
.paper-chain-item .chain-item-title {
  font-size: 0.9rem !important;
  font-weight: 400 !important;
}
.paper-chain-item {
  /* Shared styles for text and icons */
}
.paper-chain-item .icon i {
  color: var(--heading-color);
}
.paper-chain-item h3 {
  color: var(--heading-color);
}
.paper-chain-item p {
  color: var(--default-color);
}
.paper-chain-item {
  /* Interlinking Effect using Pseudo-element */
}
.paper-chain-item::after {
  content: "";
  position: absolute;
  top: -15px;
  /* Offset by border width */
  left: -15px;
  right: -15px;
  bottom: -15px;
  border-radius: 50%;
  border: 15px solid transparent;
  /* Inherit color via variable or explicit set */
  pointer-events: none;
  z-index: 10;
  /* Above the next item */
  /* Clip to bottom-right quadrant to overlay the next item at the bottom intersection */
  clip-path: polygon(50% 50%, 100% 50%, 100% 100%, 50% 100%);
}
.paper-chain-item:first-child {
  margin-left: 0;
  border-color: var(--color-deep-current);
  z-index: 4;
  /* Voice the Vision on top */
}
.paper-chain-item:first-child::after {
  border-color: var(--color-deep-current);
}
.paper-chain-item:first-child .icon i {
  color: var(--color-deep-current);
}
.paper-chain-item:nth-child(2) {
  border-color: var(--color-strong-momentum);
  z-index: 3;
}
.paper-chain-item:nth-child(2)::after {
  border-color: var(--color-strong-momentum);
}
.paper-chain-item:nth-child(2) .icon i {
  color: var(--color-strong-momentum);
}
.paper-chain-item:nth-child(3) {
  border-color: var(--color-new-leaf);
  z-index: 2;
}
.paper-chain-item:nth-child(3)::after {
  border-color: var(--color-new-leaf);
}
.paper-chain-item:nth-child(3) .icon i {
  color: var(--color-new-leaf);
}
.paper-chain-item:nth-child(4) {
  border-color: var(--color-spark-yellow);
  /* Using Spark Yellow for visibility instead of Beige */
  z-index: 1;
  /* Last item has lowest z-index */
  /* Last item doesn't need the overlay effect as there's nothing to its right */
}
.paper-chain-item:nth-child(4)::after {
  display: none;
}
.paper-chain-item:nth-child(4) .icon i {
  color: var(--color-spark-yellow);
}
@media (min-width: 992px) and (max-width: 1439px) {
  .paper-chain-item {
    margin-left: 0;
    margin-top: 0;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1;
    height: auto;
    border-radius: 50%;
    align-items: flex-start;
    padding: 20px 25px 25px 25px;
    justify-content: flex-start;
    position: relative;
    /* First circle (top-left) - no overlap, highest z-index */
  }
  .paper-chain-item:first-child {
    z-index: 4;
  }
  .paper-chain-item {
    /* Second circle (top-right) - overlaps horizontally from left */
  }
  .paper-chain-item:nth-child(2) {
    margin-left: -30px;
    z-index: 3;
  }
  .paper-chain-item {
    /* Third circle (Create Supportive Systems) - swap to bottom-right, appears above */
  }
  .paper-chain-item:nth-child(3) {
    order: 4;
    margin-left: -30px;
    margin-top: -30px;
    z-index: 2;
  }
  .paper-chain-item {
    /* Fourth circle (Connect Through Change) - swap to bottom-left, appears below */
  }
  .paper-chain-item:nth-child(4) {
    order: 3;
    margin-top: -30px;
    z-index: 1;
  }
  .paper-chain-item .content-wrapper {
    padding-top: 10px;
    position: relative;
  }
  .paper-chain-item .icon {
    margin-bottom: 8px;
  }
}
@media (max-width: 991px) {
  .paper-chain-item {
    margin-left: 0;
    width: 100%;
    max-width: 350px;
    aspect-ratio: 1;
    height: auto;
    border-radius: 50%;
    align-items: center;
    padding: 30px;
    border-width: 8px;
    position: relative;
  }
  .paper-chain-item:first-child {
    margin-top: 0;
    /* First circle at the top, no overlap */
    z-index: 4;
  }
  .paper-chain-item:nth-child(2) {
    margin-top: -30px;
    /* Overlap below first circle */
    z-index: 3;
  }
  .paper-chain-item:nth-child(3) {
    margin-top: -30px;
    /* Overlap below second circle */
    z-index: 2;
  }
  .paper-chain-item:nth-child(4) {
    margin-top: -30px;
    /* Overlap below third circle */
    z-index: 1;
  }
  .paper-chain-item::after {
    display: none;
    /* Disable original interlinking effect on mobile stack */
  }
}
.paper-chain-item:hover {
  transform: translateY(-10px) scale(1.05) !important;
  transition-delay: 0s !important;
  transition-duration: 0.25s !important;
  z-index: 20;
  /* Bring to front on hover */
}
.paper-chain-item .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.paper-chain-item .icon {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
}
.paper-chain-item h3 {
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-family: var(--heading-font);
  line-height: 1.2;
}
.paper-chain-item p {
  font-size: 1rem;
  margin-bottom: 0;
  line-height: 1.4;
}

.content ul {
  list-style: none;
  padding: 10px 0 0 0;
  margin-bottom: 1rem;
}
.content li {
  padding: 10px 0 0 0;
  display: flex;
}
.content i {
  color: var(--accent-color);
  margin-right: 0.5rem;
  line-height: 1.2;
  font-size: 1.25rem;
}

#what-we-do .container.text-center > h2 {
  position: relative;
}
#what-we-do .card-body.content ul {
  margin-bottom: 1.5rem;
}
#what-we-do .card-body.content li {
  line-height: 1.55;
  padding: 8px 0 0 0;
}
#what-we-do .card-body.content li span {
  line-height: 1.55;
}
#what-we-do .card-body.content .card-cta-btn {
  margin-top: 1.25rem;
}
#what-we-do .card-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}

.card-cta-link {
  display: inline-block;
  margin-top: 1.5rem;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.card-cta-link:hover {
  transform: translateX(5px);
  text-decoration: underline !important;
}

.cta-pill-link {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 50px;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.cta-pill-link:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.card-cta-btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  color: var(--contrast-color);
}
.card-cta-btn:hover {
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-get-started,
.btn.btn-primary,
.btn.btn-secondary,
.btn.btn-outline-primary {
  border-radius: 50px !important;
  padding: 12px 24px !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  transition: all 0.3s ease !important;
  border: none;
  text-decoration: none;
  display: inline-block;
}
.btn-get-started:hover,
.btn.btn-primary:hover,
.btn.btn-secondary:hover,
.btn.btn-outline-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.card-systems-strategy {
  border: 3px solid var(--color-deep-current) !important;
  background: color-mix(in srgb, var(--color-deep-current), transparent 96%) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-systems-strategy:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}
.card-systems-strategy .card-icon {
  color: var(--color-deep-current);
}
.card-systems-strategy .card-cta-btn {
  background: var(--color-deep-current);
}
.card-systems-strategy .card-cta-btn:hover {
  background: color-mix(in srgb, var(--color-deep-current), transparent 15%);
}

.card-workshops {
  border: 3px solid var(--color-strong-momentum) !important;
  background: color-mix(in srgb, var(--color-strong-momentum), transparent 96%) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-workshops:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}
.card-workshops .card-icon {
  color: var(--color-strong-momentum);
}
.card-workshops .card-cta-btn {
  background: var(--color-strong-momentum);
}
.card-workshops .card-cta-btn:hover {
  background: color-mix(in srgb, var(--color-strong-momentum), transparent 15%);
}

.card-speaking {
  border: 3px solid var(--color-new-leaf) !important;
  background: color-mix(in srgb, var(--color-new-leaf), transparent 96%) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-speaking:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}
.card-speaking .card-icon {
  color: var(--color-new-leaf);
}
.card-speaking .card-cta-btn {
  background: var(--color-new-leaf);
}
.card-speaking .card-cta-btn:hover {
  background: color-mix(in srgb, var(--color-new-leaf), transparent 15%);
}

.structure-meets-heart-title {
  position: relative;
  display: inline-block;
}
.structure-meets-heart-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  margin: 10px auto 0;
}

.quote-pull {
  background-color: var(--surface-color);
  border: none;
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  margin: 0;
  text-align: center;
  position: relative;
}
.quote-pull p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--heading-color);
  font-style: italic;
  margin: 0;
  font-weight: 400;
}
.quote-pull::before {
  content: '"';
  font-size: 4rem;
  line-height: 1;
  color: var(--accent-color);
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-family: var(--heading-font);
  opacity: 0.3;
}

/*# sourceMappingURL=main.css.map */
