/**
* Template Name: Strategy
* Template URL: https://bootstrapmade.com/strategy-bootstrap-agency-template/
* Updated: Jun 06 2025 with Bootstrap v5.3.6
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Nunito Sans",  sans-serif;
  --nav-font: "Raleway",  sans-serif;
  /* Fixed header offsets */
  --fixed-header-offset-desktop: 170px;
  --fixed-header-offset-mobile: 130px;
}

/* 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: #031119; /* Background color for the entire website, including individual sections */
  --default-color: rgba(255, 255, 255, 0.8); /* Default color used for the majority of the text content across the entire website */
  --heading-color: #e0e9f2; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #e3a127; /* 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: #1b262c; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: rgba(255, 255, 255, 0.8);  /* The default color of the main navmenu links */
  --nav-hover-color: #e3a127; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #29343a; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #29343a; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: rgba(255, 255, 255, 0.8); /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #e3a127; /* 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: #0d1d26;
  --surface-color: #16262f;
}

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

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

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

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

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

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

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

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

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

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

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

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

.header .header-container {
  background: var(--surface-color);
  border-radius: 50px;
  padding: 5px 25px 5px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

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

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

.header .logo h1 {
  font-size: 20px;
  margin: 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--heading-color);
}

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

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

@media (max-width: 1200px) {
  .header {
    padding-top: 10px;
  }

  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px;
  }

  .header .logo {
    order: 1;
  }

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

  .header .navmenu {
    order: 3;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

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

  .navmenu li {
    position: relative;
  }

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

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /* Ensure #navmenu itself fills the viewport when active */
  .mobile-nav-active #navmenu {
    position: fixed;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
  }

  /* Raise mobile nav above any page overlays when active */
  .mobile-nav-active .navmenu { z-index: 2147483646 !important; }
  .mobile-nav-active .navmenu>ul { z-index: 2147483647 !important; }
  .mobile-nav-active .mobile-nav-toggle { z-index: 2147483647 !important; }
}

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

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

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

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

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

.footer 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 {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

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

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  line-height: 1;
}

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

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.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: 44px;
  height: 44px;
  border-radius: 50px;
  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;
  bottom: 15px;
}

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0px, rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 10px);
  z-index: 1;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

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

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

@media (max-width: 1199px) {

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

/* Global offset so fixed header does not overlap first content on any page */
.main {
  padding-top: var(--fixed-header-offset-desktop);
}

@media (max-width: 1199px) {
  .main {
    padding-top: var(--fixed-header-offset-mobile);
  }
}

/* Landing page has its own hero spacing, so no extra offset */
.index-page .main {
  padding-top: 0;
}

/* Prefer header-adjacent rule to ensure spacing even if .main lacks page class */
.header + .main {
  padding-top: var(--fixed-header-offset-desktop);
}

@media (max-width: 1199px) {
  .header + .main {
    padding-top: var(--fixed-header-offset-mobile);
  }
}

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

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

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

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0px, rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 10px);
  z-index: 1;
}

.hero .container,
.hero .container-fluid {
  position: relative;
  z-index: 2;
}

.hero .content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 3rem;
}

@media (max-width: 991px) {
  .hero .content-col {
    padding-right: 15px;
    margin-bottom: 3rem;
  }
}

.hero .agency-name {
  margin-bottom: 1.5rem;
}

.hero .agency-name h5 {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--contrast-color);
  margin: 0;
}

.hero .main-heading {
  margin-bottom: 2rem;
}

.hero .main-heading h1 {
  font-size: 5rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin: 0;
}

@media (max-width: 1200px) {
  .hero .main-heading h1 {
    font-size: 4rem;
  }
}

@media (max-width: 767px) {
  .hero .main-heading h1 {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .hero .main-heading h1 {
    font-size: 2.5rem;
  }
}

.hero .divider {
  width: 60%;
  height: 1px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  margin-bottom: 2rem;
}

@media (max-width: 767px) {
  .hero .divider {
    width: 100%;
  }
}

.hero .description {
  margin-bottom: 2.5rem;
}

.hero .description p {
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.hero .cta-button .btn {
  display: inline-flex;
  align-items: center;
  background-color: transparent;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 40%);
  color: var(--default-color);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.hero .cta-button .btn span {
  margin-right: 0.5rem;
}

.hero .cta-button .btn i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

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

.hero .cta-button .btn:hover i {
  transform: translateX(5px);
}

.hero .visual-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 991px) {
  .hero .visual-content {
    flex-direction: column;
  }
}

.hero .fluid-shape {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.hero .fluid-shape .fluid-img {
  width: 100%;
  height: auto;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

.hero .stats-card {
  position: absolute;
  bottom: 10%;
  right: 0;
  background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
  backdrop-filter: blur(10px);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 10px;
  padding: 1.5rem;
  width: 200px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
  .hero .stats-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 2rem;
    width: 90%;
  }
}

.hero .stats-card .stats-number h2 {
  font-size: 3rem;
  font-weight: 700;
  margin: 0;
  line-height: 1;
}

.hero .stats-card .stats-label {
  margin-top: 0.5rem;
}

.hero .stats-card .stats-label p {
  font-size: 0.9rem;
  margin: 0;
}

.hero .stats-card .stats-arrow {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}

.hero .stats-card .stats-arrow a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: var(--accent-color);
  border-radius: 50%;
  color: var(--contrast-color);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.hero .stats-card .stats-arrow a:hover {
  transform: translateY(-3px);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}
/* Hero with background */
.hero.hero-bg {
    background-image: url('../img/home/Banner Background Removed.png'); /* <-- place your hero photo here */
    background-size: cover;       /* fill the area */
    background-position: center;  /* keep focus centered */
    background-repeat: no-repeat;
    color: #000000;                  /* white text works better on photos */
    position: relative;
    min-height: 90vh;             /* make it tall, near full screen */
    display: flex;
    align-items: center;          /* vertically center content */
    padding: 80px 0;
}

/* Optional overlay for better readability */
.hero.hero-bg::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
}

.hero.hero-bg .content {
    position: relative;
    z-index: 1; /* keep text above overlay */
}
.about-image img {
    border-radius: 12px; /* soft corners */
    box-shadow: 0 8px 24px rgba(0,0,0,0.08); /* light shadow for depth */
    margin-bottom: 50px;
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
/* ===============================
   ABOUT PAGE POLISH
   =============================== */

/* Control readable line length on key text blocks */
#about-hero .lead,
#about-body .text-muted.maxw-760 {
    max-width: 760px;
}
/* Banner */
#about-why {
    position: relative;
    height: 520px;
    background: url('../img/about/coachiing1.jpg') center 35% / cover no-repeat;
    overflow: hidden;
    display: flex;
    align-items: center;
}
#about-why .row {
    width: 100%;
    margin: 0;
}

/* Generic framed image */
/* ---------------- Base framed image ---------------- */
.about-shot {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;                 /* clip to rounded corners */
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

/* Make image fill its frame by default */
.about-shot img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;                /* fill box; crop excess */
    object-position: 50% 38%;         /* good default for the portrait face */
}

/* ---------------- Portrait (Hey, I’m Nat) ---------------- */
.about-shot.portrait {
    aspect-ratio: 3 / 4;              /* vertical box */
    max-height: 520px;                /* cap on huge screens */
    max-width: 420px;                 /* avoid overly wide portrait */
    margin-left: auto;                /* push to the right inside its column */
}

/* Ensure the portrait hugs the right edge of its column */
.about-hero .col-img,
#about-hero .col-img {
    display: flex;
    justify-content: flex-end;
}
.about-hero .col-text,
#about-hero .col-text {
    padding-right: 16px;              /* breathing room between text & image */
}

/* ---------------- Landscape (My Story image) ---------------- */
.about-shot.landscape {
    aspect-ratio: 16 / 9;             /* horizontal frame */
    max-height: 500px;                /* larger = more impact */
    max-width: 1040px;                /* grow wider than the text block */
    margin: 24px auto;                /* center under the text */
}

/* Landscape crop should be centered */
.about-shot.landscape img {
    object-position: center;
}

/* Center the "My Story" text block and keep it readable */
.story-block .text {
    max-width: 900px;                 /* comfortable reading width */
    margin: 0 auto 24px;              /* center + spacing above image */
    text-align: left;
}

/* ---------------- Responsive tweaks ---------------- */
@media (max-width: 1200px) {
    .about-shot.landscape { max-width: 960px; }
}

@media (max-width: 992px) {
    .about-hero .col-text { padding-right: 0; }
    .about-shot.portrait,
    .about-shot.landscape {
        max-height: 420px;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    /* allow natural height so phones don’t look cramped */
    .about-shot.portrait,
    .about-shot.landscape {
        aspect-ratio: auto;
        height: auto;
        max-height: 360px;
    }
    .about-shot img {
        object-fit: cover;
        object-position: center;
    }
}

/* Section headings */
#about-body .ryl-h2 {
    font-weight: 700;
    letter-spacing: -.01em;
}

/* Light section background and card-soft sync */
#about-body.bg-light {
    background: #f7faf7; /* whisper of green to match brand */
}

/* CTA spacing */
#about-cta .btn-lg {
    padding: .85rem 1.4rem;
    border-radius: .9rem;
}

/* ===============================
   TESTIMONIALS – LOOK & FEEL
   =============================== */

#about-testimonials .card-soft {
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 18px;
    box-shadow: 0 12px 32px rgba(0,0,0,.06);
    background: #fff;
}

.testimonial-quote {
    position: relative;
    padding: 1.5rem 1.6rem 1.6rem 2.6rem; /* room for quote mark */
    line-height: 1.6;
    color: #2a2e2c;
}

/* Decorative opening quote */
.testimonial-quote::before {
    content: "“";
    position: absolute;
    left: 14px;
    top: 6px;
    font-size: 42px;
    line-height: 1;
    color: rgba(76, 175, 80, .25); /* brand green tint */
    font-weight: 700;
    pointer-events: none;
}

/* Slight emphasis for long‑form quotes */
#about-testimonials .testimonial-quote p {
    margin: 0;
    font-size: 1.02rem;
}

/* Carousel indicators: pill dots that match brand */
#about-testimonials .carousel-indicators [data-bs-target] {
    width: 26px;
    height: 6px;
    border: 0;
    border-radius: 999px;
    background: rgba(76, 175, 80, .28);
    transition: all .25s ease;
    margin: 0 .25rem;
}
#about-testimonials .carousel-indicators .active {
    background: #6b8e62; /* brand green */
    width: 42px;
}

/* Carousel controls: subtle, rounded */
#about-testimonials .btn,
#about-testimonials .btn:focus {
    border-radius: 12px;
    box-shadow: none;
}
#about-testimonials .btn-outline-success {
    border-color: rgba(76,175,80,.35);
    color: #2a2e2c;
}
#about-testimonials .btn-outline-success:hover {
    background: rgba(76,175,80,.08);
    border-color: #6b8e62;
    color: #1f3124;
}

/* ===============================
   UTILITIES / RESPONSIVE
   =============================== */

@media (max-width: 991.98px) {
    /* Give the hero a little more breathing room on tablet/mobile */
    #about-hero .display-5 {
        font-size: 2.25rem;
    }
    .about-portrait, .about-shot {
        border-radius: 16px;
    }
    .testimonial-quote {
        padding: 1.3rem 1.2rem 1.2rem 2.2rem;
    }
    .testimonial-quote::before {
        left: 12px;
        font-size: 36px;
    }
}

@media (max-width: 575.98px) {
    #about-testimonials .carousel-indicators [data-bs-target] {
        width: 22px;
    }
    #about-testimonials .carousel-indicators .active {
        width: 34px;
    }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-header {
  margin-bottom: 60px;
}

.services .service-header .service-intro .service-heading {
  font-size: 48px;
  margin-bottom: 0;
  font-weight: 700;
  line-height: 1.2;
  color: var(--heading-color);
}

.services .service-header .service-intro .service-heading div {
  display: block;
  position: relative;
}

.services .service-header .service-intro .service-heading span {
  display: block;
  color: var(--accent-color);
}

@media (max-width: 992px) {
  .services .service-header .service-intro .service-heading {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .services .service-header .service-intro .service-heading {
    font-size: 30px;
    margin-bottom: 20px;
  }
}

.services .service-header .service-summary p {
  margin-bottom: 25px;
  color: var(--default-color);
}

.services .service-header .service-summary .service-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 30px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.services .service-header .service-summary .service-btn i {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

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

.services .service-header .service-summary .service-btn:hover i {
  transform: translateX(5px);
}

@media (max-width: 992px) {
  .services .service-header .service-summary {
    margin-top: 30px;
  }
}

.services .service-card {
  padding: 40px 40px 40px 40px;
  margin-bottom: 30px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.services .service-card .service-icon {
  margin-bottom: 25px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  width: 64px;
  height: 64px;
}

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

.services .service-card h3 {
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: 700;
}

.services .service-card h3 a {
  color: var(--heading-color);
  transition: color 0.3s ease;
}

.services .service-card h3 a span {
  display: block;
}

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

.services .service-card p {
  color: var(--default-color);
  transition: color 0.3s ease;
  margin-bottom: 0;
}

.services .service-card .card-action {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.services .service-card .card-action i {
  font-size: 24px;
  color: var(--contrast-color);
  transition: transform 0.3s ease;
}

.services .service-card .card-action:hover i {
  transform: rotate(45deg);
}

.services .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--surface-color);
  clip-path: polygon(70% 0, 100% 30%, 100% 100%, 0 100%, 0 0);
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.services .service-card:hover {
  border-color: transparent;
}

.services .service-card:hover::before {
  opacity: 1;
  visibility: visible;
  background-color: var(--surface-color);
}

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

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

.services .service-card:hover p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.services .service-card:hover .card-action {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

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

@media (max-width: 768px) {
  .services .service-card {
    padding: 150px 25px 25px;
  }

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

  .services .service-card .service-icon {
    position: absolute;
    top: 40px;
    left: 25px;
  }
}

@media (max-width: 768px) {
  .services {
    padding: 70px 0 50px;
  }
}
/* ---------- PILL TABS (structure unchanged) ---------- */
#services-hero .pill-tabs .nav-link,
.services .pill-tabs .nav-link {
    border-radius: 999px;
    padding: .6rem 1rem;
    border: 1px solid rgba(0,0,0,.1);
    background: #fff;
    color: var(--heading-color, #18201f);
    transition: all .18s ease;
}
#services-hero .pill-tabs .nav-link:hover,
.services .pill-tabs .nav-link:hover {
    border-color: color-mix(in srgb, var(--accent-color, #2e7d32), transparent 70%);
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
}
#services-hero .pill-tabs .nav-link.active,
.services .pill-tabs .nav-link.active {
    background: var(--accent-color, #2e7d32);
    color: var(--contrast-color, #fff);
    border-color: var(--accent-color, #2e7d32);
}
#services-hero .eyebrow {
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 600;
    font-size: .78rem;
    color: color-mix(in srgb, var(--heading-color, #18201f), #000 10%);
}



/*--------------------------------------------------------------
# Steps Section
--------------------------------------------------------------*/
.steps .steps-wrapper {
  position: relative;
  padding: 20px 0;
}

.steps .steps-wrapper::before {
  content: "";
  position: absolute;
  width: 2px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.steps .step-item {
  margin-bottom: 50px;
  width: 100%;
  position: relative;
}

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

.steps .step-item:nth-child(even) .step-content {
  flex-direction: row-reverse;
}

.steps .step-content {
  display: flex;
  align-items: center;
  gap: 30px;
}

.steps .step-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background-color: var(--surface-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  transition: all 0.3s ease-in-out;
}

.steps .step-icon i {
  font-size: 32px;
  color: var(--accent-color);
  transition: transform 0.3s ease-in-out;
}

.steps .step-info {
  flex: 1;
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease-in-out;
}

.steps .step-info:hover {
  transform: translateY(-5px);
}

.steps .step-number {
  display: inline-block;
  font-family: var(--heading-font);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.steps h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
  color: var(--heading-color);
}

.steps p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .steps .steps-wrapper::before {
    left: 25px;
  }

  .steps .step-item .step-content {
    flex-direction: row !important;
  }

  .steps .step-icon {
    width: 60px;
    height: 60px;
  }

  .steps .step-icon i {
    font-size: 24px;
  }

  .steps .step-info {
    padding: 20px;
  }

  .steps h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 767px) {
  .steps .step-content {
    gap: 20px;
  }

  .steps .step-icon {
    width: 50px;
    height: 50px;
  }

  .steps .step-icon i {
    font-size: 20px;
  }

  .steps .step-info {
    padding: 15px;
  }

  .steps h3 {
    font-size: 1.2rem;
  }

  .steps p {
    font-size: 0.95rem;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding-top: 80px;
  position: relative;
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-radius: 1rem;
  overflow: hidden;
  padding-bottom: 80px;
}

.call-to-action .badge {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 2rem;
}

.call-to-action h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.call-to-action p {
  font-size: 1.125rem;
  line-height: 1.6;
  opacity: 0.9;
}

.call-to-action .features .feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: var(--surface-color);
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.call-to-action .features .feature-item:hover {
  transform: translateY(-2px);
}

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

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

.call-to-action .cta-buttons .btn {
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

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

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

.call-to-action .cta-buttons .btn.btn-outline {
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  color: var(--accent-color);
}

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

.call-to-action .content-right {
  flex-shrink: 0;
  max-width: 100%;
  width: 450px;
}

.call-to-action .content-right img {
  width: 100%;
  height: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.call-to-action .content-right .floating-card {
  position: absolute;
  bottom: 2rem;
  right: -1rem;
  background: var(--surface-color);
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: float 3s ease-in-out infinite;
}

.call-to-action .content-right .floating-card .card-icon {
  width: 3rem;
  height: 3rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.call-to-action .content-right .floating-card .card-icon i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.call-to-action .content-right .floating-card .card-content {
  display: flex;
  flex-direction: column;
}

.call-to-action .content-right .floating-card .card-content .stats-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-color);
}

.call-to-action .content-right .floating-card .card-content .stats-text {
  font-size: 0.875rem;
  opacity: 0.8;
}

.call-to-action .decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.call-to-action .decoration .circle-1,
.call-to-action .decoration .circle-2 {
  position: absolute;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.call-to-action .decoration .circle-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
  opacity: 0.5;
}

.call-to-action .decoration .circle-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -100px;
  opacity: 0.3;
}

@media (max-width: 991.98px) {
  .call-to-action {
    padding: 2rem;
  }

  .call-to-action .content-right {
    width: 100%;
    margin-top: 2rem;
  }

  .call-to-action .content-right .floating-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: -3rem;
    margin-right: 1rem;
    z-index: 1;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

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

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonials-slider {
  width: 100%;
  position: relative;
  padding-bottom: 60px;
}

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

.testimonials .testimonial-item {
  background-color: var(--surface-color);
  padding: 40px;
  border-radius: 20px;
}

@media (max-width: 575px) {
  .testimonials .testimonial-item {
    padding: 20px;
  }
}

.testimonials .testimonial-item h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.testimonials .testimonial-item p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
  font-style: italic;
}

.testimonials .testimonial-item .profile {
  gap: 15px;
}

.testimonials .testimonial-item .profile .profile-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonials .testimonial-item .profile .profile-info h3 {
  font-size: 18px;
  margin: 0;
  font-weight: 600;
}

.testimonials .testimonial-item .profile .profile-info span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color) 70%, transparent);
}

.testimonials .testimonial-item .featured-img-wrapper {
  min-height: 400px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.testimonials .testimonial-item .featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.testimonials .swiper-navigation {
  position: absolute;
  bottom: 0;
  gap: 10px;
}

.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  margin: 0;
  width: 44px;
  height: 44px;
  background-color: var(--surface-color);
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
  transition: 0.3s;
}

.testimonials .swiper-button-prev::after,
.testimonials .swiper-button-next::after {
  font-size: 20px;
  color: var(--default-color);
}

.testimonials .swiper-button-prev:hover,
.testimonials .swiper-button-next:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.testimonials .swiper-button-prev:hover::after,
.testimonials .swiper-button-next:hover::after {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  padding: 0;
  margin: 0 0 40px;
  list-style: none;
}

.portfolio .portfolio-filters li {
  font-size: 15px;
  font-weight: 500;
  padding: 12px 25px;
  cursor: pointer;
  background: var(--surface-color);
  color: var(--default-color);
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.portfolio .portfolio-filters li i {
  font-size: 1.1em;
  transition: transform 0.3s ease;
}

.portfolio .portfolio-filters li:hover {
  color: var(--accent-color);
  transform: translateY(-2px);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.portfolio .portfolio-filters li:hover i {
  transform: scale(1.1);
}

.portfolio .portfolio-filters li.filter-active {
  background: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .portfolio .portfolio-filters {
    gap: 10px;
  }

  .portfolio .portfolio-filters li {
    padding: 8px 20px;
    font-size: 14px;
  }
}

.portfolio .portfolio-entry {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface-color);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.portfolio .portfolio-entry .entry-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.portfolio .portfolio-entry .entry-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio .portfolio-entry .entry-image .entry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
  display: flex;
  align-items: flex-end;
  padding: 30px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio .portfolio-entry .entry-image .entry-overlay .overlay-content {
  width: 100%;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio .portfolio-entry .entry-image .entry-overlay .entry-meta {
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.portfolio .portfolio-entry .entry-image .entry-overlay .entry-title {
  color: var(--contrast-color);
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 20px;
}

.portfolio .portfolio-entry .entry-image .entry-overlay .entry-links {
  display: flex;
  gap: 15px;
}

.portfolio .portfolio-entry .entry-image .entry-overlay .entry-links a {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-color);
  color: var(--accent-color);
  border-radius: 12px;
  font-size: 20px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.portfolio .portfolio-entry .entry-image .entry-overlay .entry-links a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.portfolio .portfolio-entry .entry-image .entry-overlay .entry-links a:nth-child(1) {
  transition-delay: 0.1s;
}

.portfolio .portfolio-entry .entry-image .entry-overlay .entry-links a:nth-child(2) {
  transition-delay: 0.2s;
}

.portfolio .portfolio-entry:hover .entry-image img {
  transform: scale(1.05);
}

.portfolio .portfolio-entry:hover .entry-image .entry-overlay {
  opacity: 1;
  transform: translateY(0);
}

.portfolio .portfolio-entry:hover .entry-image .entry-overlay .overlay-content {
  transform: translateY(0);
}

.portfolio .portfolio-entry:hover .entry-image .entry-overlay .entry-links a {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .portfolio .portfolio-entry .entry-image .entry-overlay {
    padding: 20px;
  }

  .portfolio .portfolio-entry .entry-image .entry-overlay .entry-title {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .portfolio .portfolio-entry .entry-image .entry-overlay .entry-links a {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

.portfolio .portfolio-item .entry-image {
  aspect-ratio: 4/3;
}

@media (min-width: 1200px) {
  .portfolio .portfolio-item .entry-title {
    font-size: 20px;
  }
}

@media (min-width: 768px) {
  .portfolio .row {
    margin-left: -10px;
    margin-right: -10px;
  }

  .portfolio .row .portfolio-item {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (min-width: 992px) {
  .portfolio .row {
    margin-left: -12px;
    margin-right: -12px;
  }

  .portfolio .row .portfolio-item {
    padding-left: 12px;
    padding-right: 12px;
  }
}

@media (min-width: 1200px) {
  .portfolio .row {
    margin-left: -15px;
    margin-right: -15px;
  }

  .portfolio .row .portfolio-item {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (min-width: 1200px) {
  .portfolio .entry-overlay {
    padding: 25px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .portfolio .entry-overlay {
    padding: 20px;
  }
}

@media (max-width: 991px) {
  .portfolio .entry-overlay {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  position: relative;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 8px;
  transition: 0.3s;
}

.team .team-member:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.team .team-member .member-img {
  flex: 0 0 200px;
  overflow: hidden;
}

.team .team-member .member-img img {
  width: 200px;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.team .team-member .member-info {
  padding: 25px;
  text-align: left;
}

.team .team-member .member-info h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--heading-color);
}

.team .team-member .member-info span {
  font-size: 0.9rem;
  font-weight: 400;
  color: color-mix(in srgb, var(--heading-color), transparent 30%);
  display: block;
  margin-bottom: 15px;
}

.team .team-member .member-info p {
  font-size: 0.9rem;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.team .team-member .member-info .social {
  display: flex;
  gap: 10px;
}

.team .team-member .member-info .social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-size: 1rem;
  color: var(--heading-color);
  transition: 0.3s;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.team .team-member .member-info .social a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
}

@media (max-width: 767px) {
  .team .team-member {
    flex-direction: column;
  }

  .team .team-member .member-img {
    flex: auto;
  }

  .team .team-member .member-img img {
    width: 100%;
    border-radius: 8px 8px 0 0;
  }

  .team .team-member .member-info {
    text-align: center;
  }

  .team .team-member .member-info .social {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing {
  --card-border-radius: 20px;
}

.pricing .row {
  justify-content: center;
}

.pricing .pricing-card {
  height: 100%;
  background: var(--surface-color);
  border-radius: var(--card-border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  position: relative;
  transition: all 0.4s;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.pricing .pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing .pricing-card.popular {
  border: 2px solid var(--accent-color);
}

.pricing .pricing-card.popular .plan-cta .btn-plan {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .plan-cta .btn-plan:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.pricing .pricing-card .popular-tag {
  position: absolute;
  top: 20px;
  right: -35px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 40px;
  transform: rotate(45deg);
}

.pricing .plan-header {
  padding: 30px 30px 20px;
  text-align: center;
}

.pricing .plan-header .plan-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.pricing .plan-header .plan-icon i {
  font-size: 28px;
  color: var(--accent-color);
}

.pricing .plan-header h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.pricing .plan-header p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.pricing .plan-pricing {
  text-align: center;
  padding: 10px 30px 20px;
  position: relative;
}

.pricing .plan-pricing .currency {
  font-size: 24px;
  vertical-align: top;
  line-height: 1;
  color: var(--heading-color);
  font-weight: 600;
}

.pricing .plan-pricing .amount {
  font-size: 60px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
}

.pricing .plan-pricing .period {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.pricing .plan-features {
  padding: 20px 30px;
  flex: 1;
}

.pricing .plan-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing .plan-features ul li {
  padding: 12px 0;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

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

.pricing .plan-features ul li i {
  font-size: 18px;
}

.pricing .plan-features ul li i.bi-check-circle-fill {
  color: var(--accent-color);
}

.pricing .plan-features ul li i.bi-x-circle-fill {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing .plan-cta {
  padding: 10px 30px 30px;
  text-align: center;
}

.pricing .plan-cta .btn-plan {
  display: inline-block;
  width: 100%;
  padding: 14px 32px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  color: var(--default-color);
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s;
}

.pricing .plan-cta .btn-plan:hover {
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

@media (max-width: 992px) {
  .pricing .pricing-card {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .pricing .plan-pricing .amount {
    font-size: 48px;
  }

  .pricing .plan-header {
    padding: 25px 20px 15px;
  }

  .pricing .plan-features,
  .pricing .plan-pricing,
  .pricing .plan-cta {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.faq .faq-description {
  font-size: 1rem;
  color: var(--default-color);
  margin-bottom: 2rem;
}

.faq .faq-arrow {
  color: var(--accent-color);
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}

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

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-info-box {
  background-color: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  padding: 25px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact .contact-info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.contact .contact-info-box .icon-box {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact .contact-info-box .icon-box i {
  font-size: 24px;
}

.contact .contact-info-box .info-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact .contact-info-box .info-content p {
  margin-bottom: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 15px;
  line-height: 1.5;
}

.contact .contact-info-box .info-content p:last-child {
  margin-bottom: 0;
}

.contact .map-section {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.contact .map-section iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact .form-container-overlap {
  position: relative;
  margin-top: -150px;
  margin-bottom: 60px;
  z-index: 10;
}

.contact .contact-form-wrapper {
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  padding: 40px;
}

.contact .contact-form-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
}

.contact .contact-form-wrapper h2:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
}

.contact .contact-form-wrapper .form-group {
  margin-bottom: 20px;
}

.contact .contact-form-wrapper .form-group .input-with-icon {
  position: relative;
}

.contact .contact-form-wrapper .form-group .input-with-icon i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 18px;
  z-index: 10;
}

.contact .contact-form-wrapper .form-group .input-with-icon i.message-icon {
  top: 28px;
}

.contact .contact-form-wrapper .form-group .input-with-icon textarea+i {
  top: 25px;
  transform: none;
}

.contact .contact-form-wrapper .form-group .input-with-icon .form-control {
  border-radius: 8px;
  padding: 12px 15px 12px 45px;
  height: 3.5rem;
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .contact-form-wrapper .form-group .input-with-icon .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 90%);
}

.contact .contact-form-wrapper .form-group .input-with-icon .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact .contact-form-wrapper .form-group .input-with-icon textarea.form-control {
  height: 180px;
  resize: none;
  padding-top: 15px;
}

.contact .contact-form-wrapper .btn-submit {
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact .contact-form-wrapper .btn-submit:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.contact .contact-form-wrapper .btn-submit:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact .contact-form-wrapper .loading,
.contact .contact-form-wrapper .error-message,
.contact .contact-form-wrapper .sent-message {
  margin-top: 10px;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .contact .form-container-overlap {
    margin-top: -120px;
  }

  .contact .contact-form-wrapper {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .contact .contact-info-box {
    margin-bottom: 20px;
  }

  .contact .form-container-overlap {
    margin-top: -100px;
  }

  .contact .contact-form-wrapper {
    padding: 25px;
  }

  .contact .contact-form-wrapper h2 {
    font-size: 24px;
  }

  .contact .map-section {
    height: 450px;
  }
}

@media (max-width: 576px) {
  .contact .form-container-overlap {
    margin-top: -80px;
  }

  .contact .contact-form-wrapper {
    padding: 20px;
  }

  .contact .btn-submit {
    width: 100%;
  }

  .contact .map-section {
    height: 400px;
  }
}

/* Disable overlap on the dedicated contact page to avoid header collision */
.contact-page .form-container-overlap {
  margin-top: 0 !important;
}

/* Stronger offset for contact page (header pill + spacing) */
/* Use structural spacer instead; rely on header-spacer element */
.contact-page .main { padding-top: 0 !important; }
.contact-page section, .contact-page .section { scroll-margin-top: 140px; }

/* Structural spacer inserted after header on all pages */
.header-spacer { height: var(--fixed-header-offset-desktop); }
@media (max-width: 1199px) { .header-spacer { height: var(--fixed-header-offset-mobile); } }

/* Reset main padding globally to avoid double spacing; spacer controls offset */
.main { padding-top: 0 !important; }

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details {
  --section-spacing: 2.5rem;
}

.portfolio-details .portfolio-details-media {
  position: relative;
}

.portfolio-details .portfolio-details-media .main-image {
  margin-bottom: 1rem;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider {
  position: relative;
}

.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-wrapper {
  height: auto !important;
}

.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-slide img {
  aspect-ratio: 3/2;
  object-fit: cover;
  width: 100%;
}

.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-button-next,
.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-button-prev {
  background-color: var(--contrast-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-button-next:after,
.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-button-prev:after {
  font-size: 16px;
  color: var(--accent-color);
  font-weight: bold;
}

.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-button-next:hover,
.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-button-prev:hover {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-button-next:hover:after,
.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-button-prev:hover:after {
  color: var(--contrast-color);
}

.portfolio-details .portfolio-details-media .thumbnail-grid img {
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.portfolio-details .portfolio-details-media .thumbnail-grid img:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-details-media .tech-stack-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.5rem;
}

.portfolio-details .portfolio-details-media .tech-stack-badges span {
  display: inline-block;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 20px;
  background-color: color-mix(in srgb, var(--heading-color), transparent 85%);
  color: var(--heading-color);
  transition: all 0.3s ease;
}

.portfolio-details .portfolio-details-media .tech-stack-badges span:hover {
  background-color: color-mix(in srgb, var(--heading-color), transparent 70%);
  transform: translateY(-2px);
}

.portfolio-details .portfolio-details-content {
  padding: 0 0 0 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.portfolio-details .portfolio-details-content .project-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.portfolio-details .portfolio-details-content .project-meta .badge-wrapper .project-badge {
  display: inline-block;
  padding: 8px 16px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
}

.portfolio-details .portfolio-details-content .project-meta .date-client {
  display: flex;
  gap: 1.5rem;
}

.portfolio-details .portfolio-details-content .project-meta .date-client .meta-item {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.portfolio-details .portfolio-details-content .project-meta .date-client .meta-item i {
  margin-right: 6px;
  color: var(--accent-color);
}

.portfolio-details .portfolio-details-content .project-title {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--heading-color);
}

.portfolio-details .portfolio-details-content .project-website {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.portfolio-details .portfolio-details-content .project-website i {
  font-size: 22px;
  color: var(--accent-color);
  margin-right: 8px;
}

.portfolio-details .portfolio-details-content .project-website a {
  font-weight: 500;
  transition: all 0.3s;
}

.portfolio-details .portfolio-details-content .project-website a:hover {
  letter-spacing: 0.5px;
}

.portfolio-details .portfolio-details-content .project-overview {
  margin-bottom: var(--section-spacing);
}

.portfolio-details .portfolio-details-content .project-overview .lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 1.5rem;
}

.portfolio-details .portfolio-details-content .project-overview .project-accordion .accordion-item {
  border: none;
  background: none;
  margin-bottom: 10px;
}

.portfolio-details .portfolio-details-content .project-overview .project-accordion .accordion-item .accordion-header .accordion-button {
  padding: 1rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--heading-color);
  background-color: color-mix(in srgb, var(--surface-color), transparent 70%);
  border-radius: 8px !important;
  box-shadow: none;
}

.portfolio-details .portfolio-details-content .project-overview .project-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  background-color: var(--surface-color);
  color: var(--accent-color);
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.portfolio-details .portfolio-details-content .project-overview .project-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) i {
  color: var(--accent-color);
}

.portfolio-details .portfolio-details-content .project-overview .project-accordion .accordion-item .accordion-header .accordion-button::after {
  background-size: 14px;
  width: 14px;
  height: 14px;
}

.portfolio-details .portfolio-details-content .project-overview .project-accordion .accordion-item .accordion-header .accordion-button i {
  font-size: 1.1rem;
}

.portfolio-details .portfolio-details-content .project-overview .project-accordion .accordion-item .accordion-body {
  padding: 1rem;
  background-color: var(--surface-color);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.portfolio-details .portfolio-details-content .project-overview .project-accordion .accordion-item .accordion-body p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.6;
}

.portfolio-details .portfolio-details-content .project-features {
  margin-bottom: var(--section-spacing);
}

.portfolio-details .portfolio-details-content .project-features h3 {
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  margin-bottom: 1.2rem;
}

.portfolio-details .portfolio-details-content .project-features h3 i {
  margin-right: 10px;
  color: var(--accent-color);
  font-size: 1.1em;
}

.portfolio-details .portfolio-details-content .project-features .feature-list {
  list-style: none;
  padding-left: 0;
}

.portfolio-details .portfolio-details-content .project-features .feature-list li {
  display: flex;
  align-items: center;
  padding: 8px 0;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.portfolio-details .portfolio-details-content .project-features .feature-list li i {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 1.1em;
}

.portfolio-details .portfolio-details-content .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: auto;
}

.portfolio-details .portfolio-details-content .cta-buttons .btn-view-project {
  padding: 12px 28px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.portfolio-details .portfolio-details-content .cta-buttons .btn-view-project:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-details-content .cta-buttons .btn-next-project {
  padding: 12px 28px;
  background-color: color-mix(in srgb, var(--heading-color), transparent 90%);
  color: var(--heading-color);
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.portfolio-details .portfolio-details-content .cta-buttons .btn-next-project i {
  transition: transform 0.3s ease;
}

.portfolio-details .portfolio-details-content .cta-buttons .btn-next-project:hover {
  background-color: color-mix(in srgb, var(--heading-color), transparent 80%);
}

.portfolio-details .portfolio-details-content .cta-buttons .btn-next-project:hover i {
  transform: translateX(3px);
}

@media (max-width: 1199.98px) {
  .portfolio-details .portfolio-details-content {
    padding-left: 1rem;
  }
}

@media (max-width: 991.98px) {
  .portfolio-details .portfolio-details-content {
    padding: 2rem 0 0 0;
  }

  .portfolio-details .portfolio-details-content .cta-buttons {
    margin-top: 2rem;
  }
}

@media (max-width: 767.98px) {
  .portfolio-details .project-meta {
    flex-direction: column;
    gap: 1rem;
  }

  .portfolio-details .project-meta .date-client {
    flex-direction: column;
    gap: 0.5rem;
  }

  .portfolio-details .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .portfolio-details .cta-buttons a {
    width: 100%;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .swiper-wrapper {
  height: auto !important;
}

.service-details .service-header {
  margin-bottom: 40px;
}

.service-details .service-header h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

.service-details .service-header h1:after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--accent-color);
}

.service-details .service-header .service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
  margin-top: 25px;
}

.service-details .service-header .service-meta span {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.service-details .service-header .service-meta span i {
  color: var(--accent-color);
  margin-right: 8px;
  font-size: 16px;
}

.service-details .service-header .lead {
  font-size: 18px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.service-details .service-tabs {
  margin-bottom: 50px;
}

.service-details .service-tabs .nav-tabs {
  border-bottom: 2px solid color-mix(in srgb, var(--heading-color), transparent 90%);
  margin-bottom: 30px;
}

.service-details .service-tabs .nav-tabs .nav-item {
  margin-right: 5px;
}

.service-details .service-tabs .nav-tabs .nav-link {
  border: none;
  border-radius: 0;
  padding: 12px 20px;
  font-weight: 600;
  color: color-mix(in srgb, var(--heading-color), transparent 30%);
  position: relative;
  transition: all 0.3s;
  display: flex;
  align-items: center;
}

.service-details .service-tabs .nav-tabs .nav-link i {
  margin-right: 8px;
  font-size: 18px;
}

.service-details .service-tabs .nav-tabs .nav-link:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--accent-color);
  transition: all 0.3s ease;
}

.service-details .service-tabs .nav-tabs .nav-link:hover {
  color: var(--heading-color);
  background-color: transparent;
}

.service-details .service-tabs .nav-tabs .nav-link:hover:after {
  width: 30%;
}

.service-details .service-tabs .nav-tabs .nav-link.active {
  color: var(--accent-color);
  background-color: transparent;
}

.service-details .service-tabs .nav-tabs .nav-link.active:after {
  width: 100%;
}

.service-details .service-tabs .tab-content .content-block h3 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 700;
}

.service-details .service-tabs .tab-content .content-block p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 15px;
  line-height: 1.7;
}

.service-details .service-tabs .tab-content img {
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.service-details .service-tabs .tab-content .process-timeline {
  position: relative;
  padding-left: 30px;
}

.service-details .service-tabs .tab-content .process-timeline:before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 15px;
  width: 2px;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.service-details .service-tabs .tab-content .process-timeline .timeline-item {
  position: relative;
  padding-bottom: 35px;
}

.service-details .service-tabs .tab-content .process-timeline .timeline-item:last-child {
  padding-bottom: 0;
}

.service-details .service-tabs .tab-content .process-timeline .timeline-item .timeline-marker {
  position: absolute;
  left: -30px;
  top: -5px;
  width: 32px;
  height: 32px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  z-index: 2;
}

.service-details .service-tabs .tab-content .process-timeline .timeline-item .timeline-content {
  padding-left: 10px;
}

.service-details .service-tabs .tab-content .process-timeline .timeline-item .timeline-content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-details .service-tabs .tab-content .process-timeline .timeline-item .timeline-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.service-details .service-tabs .tab-content .benefit-card {
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 30px;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.service-details .service-tabs .tab-content .benefit-card:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease;
}

.service-details .service-tabs .tab-content .benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.service-details .service-tabs .tab-content .benefit-card:hover:before {
  transform: scaleX(1);
  transform-origin: left;
}

.service-details .service-tabs .tab-content .benefit-card:hover .benefit-icon {
  transform: rotateY(180deg);
  background-color: var(--accent-color);
}

.service-details .service-tabs .tab-content .benefit-card:hover .benefit-icon i {
  color: var(--contrast-color);
}

.service-details .service-tabs .tab-content .benefit-card .benefit-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.5s ease;
}

.service-details .service-tabs .tab-content .benefit-card .benefit-icon i {
  font-size: 28px;
  color: var(--accent-color);
  transition: all 0.5s ease;
}

.service-details .service-tabs .tab-content .benefit-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-details .service-tabs .tab-content .benefit-card p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}

.service-details .service-gallery h3 {
  font-size: 26px;
  margin-bottom: 25px;
  font-weight: 700;
}

.service-details .service-gallery .service-details-slider {
  margin-bottom: 40px;
  padding-bottom: 40px;
}

.service-details .service-gallery .service-details-slider .portfolio-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.service-details .service-gallery .service-details-slider .portfolio-item:hover .portfolio-info {
  opacity: 1;
  transform: translateY(0);
}

.service-details .service-gallery .service-details-slider .portfolio-item img {
  border-radius: 12px;
  transition: all 0.4s ease;
}

.service-details .service-gallery .service-details-slider .portfolio-item .portfolio-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
  padding: 30px 20px 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.service-details .service-gallery .service-details-slider .portfolio-item .portfolio-info h5 {
  color: var(--contrast-color);
  font-weight: 700;
  margin-bottom: 5px;
}

.service-details .service-gallery .service-details-slider .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  margin: 0;
  font-size: 14px;
}

.service-details .service-gallery .service-details-slider .swiper-pagination {
  padding-top: 5px;
  bottom: 0;
}

.service-details .service-gallery .service-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  opacity: 1;
}

.service-details .service-gallery .service-details-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 25px;
  border-radius: 5px;
  background-color: var(--accent-color);
}

.service-details .service-sidebar {
  position: sticky;
  top: 100px;
}

.service-details .service-sidebar .action-card {
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), black 20%) 100%);
  border-radius: 15px;
  padding: 35px 30px;
  color: var(--contrast-color);
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.service-details .service-sidebar .action-card:before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.service-details .service-sidebar .action-card:after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  z-index: 1;
}

.service-details .service-sidebar .action-card h3 {
  color: var(--contrast-color);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-details .service-sidebar .action-card p {
  margin-bottom: 25px;
  opacity: 0.9;
}

.service-details .service-sidebar .action-card .btn-primary {
  background-color: var(--contrast-color);
  color: var(--accent-color);
  border: none;
  border-radius: 8px;
  padding: 12px 25px;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

.service-details .service-sidebar .action-card .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.service-details .service-sidebar .action-card .guarantee {
  display: block;
  margin-top: 20px;
  font-size: 14px;
  opacity: 0.8;
}

.service-details .service-sidebar .action-card .guarantee i {
  margin-right: 5px;
}

.service-details .service-sidebar .service-features-list {
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.service-details .service-sidebar .service-features-list h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid color-mix(in srgb, var(--heading-color), transparent 90%);
}

.service-details .service-sidebar .service-features-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-details .service-sidebar .service-features-list ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.service-details .service-sidebar .service-features-list ul li:last-child {
  margin-bottom: 0;
}

.service-details .service-sidebar .service-features-list ul li i {
  flex-shrink: 0;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-right: 15px;
}

.service-details .service-sidebar .service-features-list ul li div {
  flex: 1;
}

.service-details .service-sidebar .service-features-list ul li div h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}

.service-details .service-sidebar .service-features-list ul li div p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
  font-size: 14px;
}

.service-details .service-sidebar .testimonial-card {
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.service-details .service-sidebar .testimonial-card .testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.service-details .service-sidebar .testimonial-card .testimonial-header i {
  font-size: 36px;
  color: var(--accent-color);
  opacity: 0.3;
}

.service-details .service-sidebar .testimonial-card .testimonial-header .rating {
  display: flex;
}

.service-details .service-sidebar .testimonial-card .testimonial-header .rating i {
  color: #FFD700;
  font-size: 16px;
  opacity: 1;
  margin-left: 2px;
}

.service-details .service-sidebar .testimonial-card .testimonial-text {
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.service-details .service-sidebar .testimonial-card .client-info {
  display: flex;
  align-items: center;
}

.service-details .service-sidebar .testimonial-card .client-info .client-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.service-details .service-sidebar .testimonial-card .client-info .client-details h5 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 5px;
}

.service-details .service-sidebar .testimonial-card .client-info .client-details span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.service-details .service-sidebar .contact-info {
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.service-details .service-sidebar .contact-info h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
}

.service-details .service-sidebar .contact-info .contact-method {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.service-details .service-sidebar .contact-info .contact-method:last-child {
  margin-bottom: 0;
}

.service-details .service-sidebar .contact-info .contact-method i {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-right: 15px;
}

.service-details .service-sidebar .contact-info .contact-method div {
  flex: 1;
}

.service-details .service-sidebar .contact-info .contact-method div span {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 5px;
}

.service-details .service-sidebar .contact-info .contact-method div p {
  margin: 0;
  font-weight: 600;
  color: var(--heading-color);
}

@media (max-width: 991px) {
  .service-details .service-sidebar {
    position: relative;
    top: 0;
    margin-bottom: 40px;
  }

  .service-details .service-header h1 {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .service-details .service-tabs .nav-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .service-details .service-tabs .nav-tabs .nav-link {
    white-space: nowrap;
    padding: 10px 15px;
    font-size: 14px;
  }

  .service-details .service-tabs .nav-tabs .nav-link i {
    font-size: 16px;
  }

  .service-details .service-header h1 {
    font-size: 26px;
  }

  .service-details .service-header .service-meta {
    gap: 15px;
  }

  .service-details .service-header .service-meta span {
    font-size: 14px;
  }

  .service-details .service-header .lead {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
/* ===== RYL Light Theme Overrides (place at end of main.css) ===== */

/* Global color variables */
:root {
    /* Core */
    --background-color: #ffffff;                 /* page + sections */
    --surface-color: #f6f8f5;                    /* cards, boxes */
    --default-color: #3a3d39;                    /* body text */
    --heading-color: #1e1f1d;                    /* headings */
    --accent-color: #7BAA6A;                     /* RYL green */
    --contrast-color: #ffffff;                   /* text on green */

    /* Nav */
    --nav-color: #2b302b;
    --nav-hover-color: var(--accent-color);
    --nav-mobile-background-color: #ffffff;
    --nav-dropdown-background-color: #ffffff;
    --nav-dropdown-color: #2b302b;
    --nav-dropdown-hover-color: var(--accent-color);
}

/* Header: light “pill” bar */
.header .header-container {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

/* Primary buttons & links use brand green automatically via --accent-color */
.btn-primary,
.header .btn-getstarted,
.about .about-content .btn-primary,
.services .service-header .service-summary .service-btn,
.scroll-top {
    background-color: var(--accent-color) !important;
    border-color: var(--accent-color) !important;
    color: var(--contrast-color) !important;
}
.btn-primary:hover,
.header .btn-getstarted:hover,
.services .service-header .service-summary .service-btn:hover {
    background-color: color-mix(in srgb, var(--accent-color), black 10%) !important;
    border-color: color-mix(in srgb, var(--accent-color), black 10%) !important;
}

/* Links */
a { color: color-mix(in srgb, var(--accent-color), black 10%); }
a:hover { color: var(--accent-color); }

/* Section titles */
.section-title h2 { color: #6a6f69; }
.section-title h2::after { background: var(--accent-color); }
.section-title div { color: var(--heading-color); }

/* Hero: remove dark texture, lighten borders, make CTA solid */
.hero { background: #ffffff; }
.hero::after { background-image: none; }      /* remove dark hatch */
.hero .divider { background-color: rgba(0,0,0,0.08); }
.hero .cta-button .btn {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
}
.hero .cta-button .btn:hover {
    background-color: color-mix(in srgb, var(--accent-color), black 10%);
    border-color: color-mix(in srgb, var(--accent-color), black 10%);
}

/* Cards, feature blocks, and chips */
.about .about-content .feature-item,
.services .service-card,
.contact .contact-info-box,
.contact .contact-form-wrapper,
.testimonials .testimonial-item,
.team .team-member,
.portfolio .portfolio-entry,
.pricing .pricing-card {
    background-color: var(--surface-color);
    border-color: rgba(0,0,0,0.06);
}

/* Portfolio filter chips */
.portfolio .portfolio-filters li {
    background: #eef2ec;
    color: var(--default-color);
}
.portfolio .portfolio-filters li.filter-active {
    background: var(--accent-color);
    color: var(--contrast-color);
}

/* Call-to-action block: very light green wash */
.call-to-action {
    background-color: color-mix(in srgb, var(--accent-color), white 92%);
}

/* Footer: light, not dark */
.footer {
    background: #ffffff;
    color: var(--default-color);
}
.footer .copyright {
    background-color: #f9faf8;
}

/* Remove other dark textures */
.page-title::after { background-image: none; }

/* Dropdown borders on light background */
.navmenu .dropdown ul {
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

/* Inputs on contact form */
.contact .contact-form-wrapper input.form-control,
.contact .contact-form-wrapper textarea.form-control {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.12);
    color: var(--default-color);
}
.contact .contact-form-wrapper input.form-control:focus,
.contact .contact-form-wrapper textarea.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 80%);
}
/*Who I work with section */
.who-i-work-with .section-title h2 {
    font-size: 1.5rem;        /* bigger than default */
    font-weight: 700;         /* strong emphasis */
    text-transform: uppercase; /* optional for emphasis */
    color: #222;              /* dark, readable */
    margin-bottom: 10px;
}

.who-i-work-with .section-title p {
    font-size: 1.25rem;       /* bigger subtitle */
    color: #555;              /* softer contrast */
    font-weight: 400;
    margin-bottom: 30px;
}

.who-i-work-with .info-box {
    background: #f8f9f6;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.who-i-work-with h4 {
    font-weight: 600;
    margin-bottom: 12px;
}
.who-i-work-with .section-title h2::after,
.who-i-work-with .section-title h2::before {
    display: none !important;
}

/* Ensure fixed header doesn't overlap first content on split pages */
.services-page .main,
.about-page .main,
.portfolio-page .main,
.team-page .main,
.contact-page .main {
  padding-top: 150px;
}

@media (max-width: 1199px) {
  .services-page .main,
  .about-page .main,
  .portfolio-page .main,
  .team-page .main,
  .contact-page .main {
    padding-top: 110px;
  }
}

/* Improve anchor scroll offset on contact page */
.contact-page section,
.contact-page .section {
  scroll-margin-top: 140px;
}

/* Newsletters section + */
/* ==== RYL section styling ==== */
:root{
    --ryl-heading:#22303A;       /* matches your dark headings */
    --ryl-muted:#6c757d;
}

.section-pad{ padding: 5rem 0; }
.section-title{
    color:var(--ryl-heading);
    font-weight:700;
    letter-spacing:.3px;
}
.section-eyebrow{
    text-transform:uppercase;
    letter-spacing:.14em;
    font-weight:600;
    color:var(--ryl-muted);
    font-size:.8rem;
}
.section-hr{
    width:96px;height:4px;border:none;margin:.75rem auto 2rem;
    background:#6b8e62;            /* Bootstrap “success” green (your CTA) */
    opacity:.85;border-radius:4px;
}

.card-soft{
    border:1px solid rgba(0,0,0,.06)!important;
    box-shadow:0 6px 24px rgba(0,0,0,.06);
    border-radius:1rem;
}

.input-lg .form-control{ padding:.9rem 1rem; font-size:1rem; }
.input-lg .btn{ padding:.9rem 1.25rem; }

.badge-episode{
    font-weight:600; border-radius:50rem; padding:.5rem .9rem;
    background:rgba(40,167,69,.12); color:#1e7e34;
}

.testimonial-quote{
    position:relative; padding:1.25rem 1.25rem 1.25rem 3.25rem;
}
.testimonial-quote:before{
    content:"“"; position:absolute; left:.9rem; top:.45rem;
    font-size:3rem; line-height:1; color:rgba(40,167,69,.35);
}
.testimonial-name{ font-weight:700; color:#343a40; }
.testimonial-role{ color:var(--ryl-muted); }

/* Carousel tweaks */
#testimonialsCarousel .carousel-indicators [data-bs-target]{
    background-color:#6b8e62; width:8px; height:8px; border-radius:50%;
}

/* Services page */
/* ===== RYL – Services (For Organisations) – VERBATIM TEXT PRESENTATION ===== */
:root{ --ryl-dark:#22303A; --ryl-muted:#6c757d; --ryl-green:#6b8e62; }
.ryl-sec{ scroll-margin-top:96px; }
.maxw-760{ max-width:760px; }
.card-soft{ border:1px solid rgba(0,0,0,.06)!important; border-radius:1rem; box-shadow:0 8px 28px rgba(0,0,0,.08); background:#fff; }

/* Hierarchy */
.ryl-eyebrow{ text-transform:uppercase; letter-spacing:.14em; color:var(--ryl-muted); font-weight:600; font-size:.8rem; margin-bottom:.25rem; }
.ryl-h2{ color:var(--ryl-dark); font-weight:800; letter-spacing:.3px; margin:0; }
.ryl-h5{ font-weight:700; color:var(--ryl-dark); }
.ryl-h6{ font-weight:700; color:var(--ryl-dark); letter-spacing:.02em; }

/* Lists */
.ryl-bullets{ margin:0; padding-left:1.1rem; }
.ryl-bullets li{ margin:.4rem 0; }
.ryl-list{ margin:0; padding-left:1rem; }
.ryl-list li{ margin:.25rem 0; color:#495057; }

/* Packages */
.pkg-badge{ display:inline-block; font-weight:700; letter-spacing:.04em; padding:.35rem .6rem; border-radius:.5rem; }
.pkg-badge.badge-essentials{ background:rgba(40,167,69,.12); color:#1e7e34; }
.pkg-badge.badge-growth{ background:var(--ryl-green); color:#fff; }
.pkg-badge.badge-deep{ background:#266e3e; color:#fff; }

/* Buttons polish */
.btn-success{ box-shadow:0 8px 18px rgba(40,167,69,.2); }
.btn-success:hover{ filter:brightness(.96); }
.btn-outline-success:hover{ background:var(--ryl-green); color:#fff; }

/* Light sections */
.bg-light{ background:#f8f9fb!important; }


/* ===== RYL – Services (For Individuals) ===== */
/* Reuses the same token + components as Organisations */

:root{ --ryl-dark:#22303A; --ryl-muted:#6c757d; --ryl-green:#6b8e62; }
.ryl-sec{ scroll-margin-top:96px; }
.maxw-760{ max-width:760px; }

/* Cards & hierarchy already defined; ensure consistency */
.card-soft{
    border:1px solid rgba(0,0,0,.06)!important;
    border-radius:1rem;
    box-shadow:0 8px 28px rgba(0,0,0,.08);
    background:#fff;
}
.ryl-eyebrow{ text-transform:uppercase; letter-spacing:.14em; color:var(--ryl-muted); font-weight:600; font-size:.8rem; margin-bottom:.25rem; }
.ryl-h2{ color:var(--ryl-dark); font-weight:800; letter-spacing:.3px; margin:0; }
.ryl-h5{ font-weight:700; color:var(--ryl-dark); }
.ryl-h6{ font-weight:700; color:var(--ryl-dark); letter-spacing:.02em; }

.ryl-bullets{ margin:0; padding-left:1.1rem; }
.ryl-bullets li{ margin:.4rem 0; }
.ryl-list{ margin:0; padding-left:1rem; }
.ryl-list li{ margin:.25rem 0; color:#495057; }

.btn-outline-success:hover{ background:var(--ryl-green); color:#fff; }
.bg-light{ background:#f8f9fb!important; }

/* ==== About page tweaks ==== */
.about-page .about-portrait,
.about-page .about-shot{
    border-radius: 1rem;
}

.about-page .about-portrait img,
.about-page .about-shot img{
    display:block; width:100%; height:auto;
}

@media (min-width: 992px){
    #about-hero .about-portrait{ max-height: 520px; }
    #about-body .about-shot{ max-height: 520px; }
}

/* Reuse existing testimonial quote styling */
.testimonial-quote{
    position:relative; padding:1.25rem 1.25rem 1.25rem 3.25rem;
}
.testimonial-quote:before{
    content:"“"; position:absolute; left:.9rem; top:.45rem;
    font-size:3rem; line-height:1; color:rgba(40,167,69,.35);
}
/* ===== Contact page polish ===== */
.contact-page .card-soft{
    border:1px solid rgba(0,0,0,.06)!important;
    border-radius:1rem;
    box-shadow:0 12px 32px rgba(0,0,0,.08);
}

.contact-page .form-control{
    border-radius:.75rem;
    border-color:#e6e9ed;
}
.contact-page .form-control:focus{
    border-color:#6b8e62;
    box-shadow:0 0 0 .25rem rgba(40,167,69,.15);
}

.contact-page .btn-success{
    border-radius:.75rem;
    padding:.6rem 1.1rem;
    box-shadow:0 8px 18px rgba(40,167,69,.2);
}

/* Align the small left column items nicely */
.contact-page .bi{ line-height:1; }

/* Narrow containers on very large screens for pleasant reading */
@media (min-width:1200px){
    .contact-page .container{ max-width: 980px; }
}
/* Asterisk for required fields */
.form-label.req::after{
    content:" *";
    color:#dc3545;   /* Bootstrap danger red */
    font-weight:700;
}
/* FAQ + Socials polish (matches card-soft look) */
.ryl-accordion .accordion-button{
    border-radius: .75rem;
    font-weight: 600;
}
.ryl-accordion .accordion-item{
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 1rem;
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
    overflow: hidden;
}
.ryl-accordion .accordion-button:not(.collapsed){
    color: #1d2b2a;
    background-color: rgba(40,167,69,.06);
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.05);
}

/* Social buttons */
.ryl-social{
    border-radius: .75rem;
    padding: .6rem 1.05rem;
}
/* Reduce navbar height / white space */
.header {
    padding: 8px 20px !important;  /* reduce vertical padding */
    min-height: 60px;              /* shrink header height */
}

/* Adjust the spacer below the fixed header */
.header-spacer {
    height: 80px; /* match the new header height */
}
#newsletters {
    margin-bottom: 0;
}

#podcast {
    padding-top: 1rem; /* small breathing space */
}
/* Remove extra space between sections */
#who-i-work-with {
    padding-bottom: 2rem !important; /* tighten bottom */
}

#newsletters {
    margin-top: 0 !important;        /* remove top margin */
    padding-top: 2rem !important;    /* keep just a little breathing space */
}
/* Reduce gap between Podcast and Testimonials */
#podcast {
    padding-bottom: 2rem !important; /* tighten bottom */
}

#testimonials {
    margin-top: 0 !important;       /* remove top margin */
    padding-top: 2rem !important;   /* small breathing space */
}
/* Reduce gap between Testimonials and FAQs */
#testimonials {
    padding-bottom: 2rem !important; /* shrink bottom space */
}

#home-faq {
    margin-top: 0 !important;        /* remove extra top margin */
    padding-top: 2rem !important;    /* just enough breathing space */
}
/* ===== Design tokens ===== */
:root{
    --ryl-maxw: 980px;
    --ryl-accent: #6aa06a;         /* brand green */
    --ryl-accent-2: #3b7a3b;       /* deeper green */
    --ryl-ink: #1e293b;            /* slate-800 */
    --ryl-ink-2: #475569;          /* slate-600 */
    --ryl-muted: #6b7280;          /* gray-500 */
    --ryl-soft: #f7faf7;           /* soft greenish bg */
    --ryl-card: #ffffff;
    --ryl-ring: rgba(106,160,106,.25);
    --shadow-soft: 0 10px 30px rgba(0,0,0,.06);
    --shadow-card: 0 6px 20px rgba(0,0,0,.08);
}

/* ===== Header polish ===== */

.header .btn-getstarted{
    border-radius: 999px;
    padding: .6rem 1.1rem;
}

/* ===== Spacing rhythm ===== */
.ryl-sec{ padding-block: 72px; }
@media (max-width: 991.98px){ .ryl-sec{ padding-block: 56px; } }

/* ===== Services hero ===== */

.services-hero {
    position: relative;
    background: url("../img/services/Workshop1.jpg") center 30% / cover no-repeat;
    min-height: 400px;
    color: #fff;
    z-index: 1;
}

.services-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: -1;
}


.services-hero h1,
.services-hero h2,
.services-hero h3,
.services-hero p,
.services-hero li {
    color: #ffffff !important;
}

.services-hero .container {
    position: relative;
    z-index: 1;
    padding-top: 40px;
}

.check-list{
    gap: 1rem 1.5rem;
    color: #ffffff;
    font-weight: 500;
}
.check-list .bi{ vertical-align: -2px; }

/* CTA pills (For Organisations / For Individuals) */
.pill-ctas{
    display: inline-flex; align-items: center; gap: 10px;
    margin-top: .75rem;
}
.pill-ctas .btn{
    border-radius: 999px;
    padding: .7rem 1.1rem;
    font-weight: 700;
}
#cta-org.btn{ background: var(--ryl-accent); border-color: var(--ryl-accent); }
#cta-org.btn:hover{ background: var(--ryl-accent-2); border-color: var(--ryl-accent-2); }
#cta-indiv.btn{ background: #fff; border-color: rgba(0,0,0,.12); }
#cta-indiv.btn:hover{ background: #f8fafc; }

/* Bootstrap nav pills refinement */
.pill-tabs .nav-link{
    border-radius: 999px;
    padding: .55rem 1rem;
    font-weight: 700;
    border: 1px solid rgba(0,0,0,.08);
    color: var(--ryl-ink-2);
    background: #fff;
}
.pill-tabs .nav-link.active{
    color: #fff;
    background: var(--ryl-accent);
    border-color: var(--ryl-accent);
    box-shadow: 0 0 0 .25rem var(--ryl-ring);
}

/* Eyebrow + headings */
.ryl-eyebrow{
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 800;
    color: var(--ryl-muted);
    margin-bottom: .25rem;
}
.ryl-h2{
    font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.1rem);
    font-weight: 800; color: var(--ryl-ink);
    margin: 0;
}
.ryl-h5{ font-weight: 800; color: var(--ryl-ink); }
.ryl-h6{ font-weight: 800; color: var(--ryl-ink-2); }

/* Bullets */
.ryl-bullets, .ryl-list{ padding-left: 1.1rem; }
.ryl-bullets li, .ryl-list li{ margin-bottom: .55rem; color: var(--ryl-ink-2); }
.ryl-list em{ color: var(--ryl-muted); }

/* Cards */
.card-soft{
    border: 1px solid rgba(0,0,0,.06);
    background: var(--ryl-card);
    box-shadow: var(--shadow-card);
    border-radius: 16px;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card-soft:hover{
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
    border-color: rgba(0,0,0,.12);
}

/* Package badges */
.pkg-badge{
    display: inline-block;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .75rem;
    padding: .4rem .6rem;
    border-radius: 8px;
    background: #eef6ee;
    color: var(--ryl-accent-2);
}
.badge-essentials{ background:#eef6ee; }
.badge-growth{ background:#ebf3ff; color:#285ea8; }
.badge-deep{ background:#f5efff; color:#5a36a2; }

/* Light sections */
.bg-light{ background: var(--ryl-soft) !important; }

/* Section CTA buttons */
.btn-primary{
    background: var(--ryl-accent);
    border-color: var(--ryl-accent);
}
.btn-primary:hover{
    background: var(--ryl-accent-2);
    border-color: var(--ryl-accent-2);
}
.btn-outline-success{
    border-color: rgba(0,0,0,.14);
    color: var(--ryl-ink);
}
.btn-outline-success:hover{
    background:#f3f4f6; color: var(--ryl-ink);
}

/* Footer small polish */
.footer{
    border-top: 1px solid rgba(0,0,0,.06);
}
/* Center most text (you already added something like this) */
.services-page h1,
.services-page h2,
.services-page h3,
.services-page h5,
.services-page h6,
.services-page p { text-align:center; margin-left:auto; margin-right:auto; }

#indiv-lsi h3,
#indiv-lsi h6,
#indiv-lsi p,
#indiv-lsi ul,
#indiv-lsi li {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.coaching-text h3,
.coaching-text h6,
.coaching-text p,
.coaching-text ul,
.coaching-text li {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}


.coaching-img {
    max-width: 50%;
    height: auto;
}


.services-page p.text-start {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

#org-lsi {
    text-align: left !important;
}

#org-lsi p,
#org-lsi ul,
#org-lsi h3,
#org-lsi h6,
#org-lsi li {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

#org-coaching-lasting {
    text-align: left !important;
}

#org-coaching-lasting h3,
#org-coaching-lasting h6,
#org-coaching-lasting p,
#org-coaching-lasting ul,
#org-coaching-lasting li {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}


.services-page .maxw-760 { margin-left:auto !important; margin-right:auto !important; }

.services-page .ryl-bullets,
.services-page .ryl-list,
.services-page .check-list { text-align:center; list-style-position:inside; padding-left:0; }

/* -------- Buttons centered everywhere -------- */
.services-page a.btn,
.services-page button.btn {
    display: block;           /* block makes margin auto work */
    width: fit-content;       /* button hugs content */
    margin-left: auto;
    margin-right: auto;
}

/* Buttons inside card bodies that are flex columns */
.services-page .card .card-body.d-flex.flex-column {
    align-items: center;      /* centers all children horizontally */
    text-align: center;
}
/* If you use a .mt-auto wrapper before the button, center that row too */
.services-page .card .card-body.d-flex.flex-column > .mt-auto {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Pills / tab buttons row (defensive centering) */
.services-page .pill-tabs { justify-content: center !important; }

/* -------- “Text in the photos” centered -------- */
/* For Bootstrap card overlays */
.services-page .card-img-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
/* If you use your own overlay wrapper, add class="overlay-text" to it */
.services-page .overlay-text {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    text-align: center; padding: 1rem;
}

/* Figure captions / image captions */
.services-page figure,
.services-page .figure { text-align: center; }
.services-page figcaption,
.services-page .figure .figure-caption { text-align: center; }

/* ================================
   Privacy Page Styling
   ================================ */

/* Ensure only applies to privacy page */
body.privacy-page {
    background: #f7f7f7; /* subtle grey background */
}

/* Hero section */
.privacy-page .policy-hero {
    padding: 96px 0 24px;
    text-align: center;
}

.privacy-page .policy-hero h1 {
    font-weight: 900;
    font-size: 2.5rem;
    letter-spacing: .3px;
    margin-bottom: .5rem;
}

.privacy-page .policy-hero p {
    max-width: 820px;
    margin: 0 auto;
    color: #666;
    font-size: 1.05rem;
}

/* Policy card container */
.privacy-page .policy-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 18px 60px rgba(0,0,0,.08);
    font-size: 1rem;
    line-height: 1.7;
}

@media (min-width: 992px) {
    .privacy-page .policy-card {
        padding: 48px 56px;
    }
}

/* Headings inside policy */
.privacy-page .policy-card h2 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-top: 2rem;
    margin-bottom: .75rem;
    color: #1e1e1e;
}

.privacy-page .policy-card p {
    margin-bottom: 1rem;
    color: #444;
}

.privacy-page .policy-card ul {
    padding-left: 1.2rem;
    margin-bottom: 1rem;
}

.privacy-page .policy-card li {
    margin-bottom: .5rem;
}

/* Divider line */
.privacy-page .divider {
    height: 1px;
    background: #eee;
    margin: 1.5rem 0;
}

/* Links */
.privacy-page .policy-card a {
    color: #6b8e62; /* your brand green */
    text-decoration: none;
    font-weight: 500;
}
.privacy-page .policy-card a:hover {
    text-decoration: underline;
}

/* Table of contents */
.privacy-page .policy-toc {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: .875rem 1rem;
    margin-bottom: 1.5rem;
}

.privacy-page .policy-toc strong {
    margin-right: .5rem;
    font-weight: 700;
}

.privacy-page .policy-toc a {
    display: inline-block;
    margin: .25rem .75rem .25rem 0;
    color: #6b8e62;
    font-size: .95rem;
}

.privacy-page .policy-toc a:hover {
    text-decoration: underline;
}
/* ===== FINAL BRAND OVERRIDES (site-wide) ===== */

/* Core tokens (wins over earlier :root blocks) */
:root{
    --accent-color: #6b8e62 !important;              /* brand green */
    --bs-success: #6b8e62 !important;                /* Bootstrap success color */
    --bs-success-rgb: 107,142,98 !important;         /* for shadows, rgba, etc. */

    /* Nav hover uses brand green */
    --nav-hover-color: #6b8e62 !important;
}

/* Buttons & CTAs (primary/success + header CTA) */
.btn-primary,
.btn-success,
.header .btn-getstarted {
    background-color: var(--accent-color) !important;
    border-color: var(--accent-color) !important;
    color: #fff !important;
}
.btn-primary:hover,
.btn-success:hover,
.header .btn-getstarted:hover {
    background-color: color-mix(in srgb, var(--accent-color), black 10%) !important;
    border-color: color-mix(in srgb, var(--accent-color), black 10%) !important;
}

/* Outline success variants */
.btn-outline-success {
    color: var(--accent-color) !important;
    border-color: var(--accent-color) !important;
    background: transparent !important;
}
.btn-outline-success:hover {
    color: #fff !important;
    background: var(--accent-color) !important;
    border-color: var(--accent-color) !important;
}

/* Generic success utilities */
.text-success { color: var(--accent-color) !important; }
.bg-success   { background-color: var(--accent-color) !important; }

/* Use the warmer divider for “bg-light” sections that split content */
.bg-light,
.section.bg-light,
#podcast.section-pad.bg-light,
#home-socials.ryl-sec.bg-light {
    background-color: #ede9e4 !important;
}

/* Section rule (small accent line) */
.section-hr {
    border: 0;
    height: 2px;
    width: 80px;
    margin: .75rem auto 0;
    background-color: var(--accent-color);
    opacity: 1;
}

/* Carousels & pills that used hard-coded greens */
#testimonialsCarousel .carousel-indicators [data-bs-target]{
    background-color: var(--accent-color) !important;
}
.badge-episode{
    background: rgba(var(--bs-success-rgb), .12) !important;
    color: #2e4a2e !important;
}

/* Success shadows that referenced old rgb(40,167,69) */
.btn-success{
    box-shadow: 0 8px 18px rgba(var(--bs-success-rgb), .20) !important;
}
/* Match Who I Work With section bg with Podcast + Socials */
#who-i-work-with {
    background-color: #ede9e4 !important;
}
#who-i-work-with .info-box {
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border-radius: 8px;
}
/* =========================================================
   RYL Global Palette — Paste at the VERY END of main.css
   ========================================================= */
:root{
    /* Brand palette */
    --ryl-green:        #6b8e62; /* primary */
    --ryl-green-pastel: #b1c1a9; /* soft surface / chips */
    --ryl-peach:        #d7a98c; /* secondary accent */
    --ryl-peach-100:    #e7cfbe; /* light accent / hovers */
    --ryl-neutral:      #ede9e4; /* section split background */
    --ryl-ink:          #1e1e1e; /* dark grey text */
    --ryl-black:        #000000;
    --ryl-white:        #ffffff;

    /* Site-wide tokens (override earlier definitions) */
    --background-color: var(--ryl-white) !important;
    --surface-color:    #f9faf8 !important;              /* soft card base */
    --default-color:    #2c2c2c !important;              /* body copy */
    --heading-color:    var(--ryl-ink) !important;
    --accent-color:     var(--ryl-green) !important;     /* primary accent */
    --contrast-color:   var(--ryl-white) !important;

    /* Nav */
    --nav-color:                    #2b2b2b !important;
    --nav-hover-color:              var(--ryl-green) !important;
    --nav-mobile-background-color:  var(--ryl-white) !important;
    --nav-dropdown-background-color:var(--ryl-white) !important;
    --nav-dropdown-color:           #2b2b2b !important;
    --nav-dropdown-hover-color:     var(--ryl-green) !important;

    /* Bootstrap sync (success -> green, primary -> green, secondary -> peach) */
    --bs-primary:       var(--ryl-green) !important;
    --bs-primary-rgb:   107,142,98 !important;
    --bs-success:       var(--ryl-green) !important;
    --bs-success-rgb:   107,142,98 !important;
    --bs-secondary:     var(--ryl-peach) !important;
    --bs-secondary-rgb: 215,169,140 !important;
}

/* ----------------- Global backgrounds / sections ----------------- */
.bg-light,
.section.bg-light { background-color: var(--ryl-neutral) !important; }      /* split sections */
.card-soft,
[class*="card"] { background: var(--ryl-white); border-color: rgba(0,0,0,.08); border-radius: 12px;}

/* Optional pastel “surface” for blocks (e.g., info panels, chips) */
.bg-surface    { background-color: var(--ryl-green-pastel) !important; }
.bg-peach-100  { background-color: var(--ryl-peach-100)  !important; }

/* ----------------- Typography ----------------- */
body { color: var(--default-color) !important; }
h1,h2,h3,h4,h5,h6 { color: var(--heading-color) !important; }
a { color: color-mix(in srgb, var(--ryl-green), black 8%); }
a:hover { color: var(--ryl-green); }

/* ----------------- Buttons & CTAs ----------------- */
.btn,
.header .btn-getstarted { border-radius: 999px; }

#newsletterForm .form-control,
#ne#newsletterForm .form-control,
#newsletterSubmit {
    height: 58px;
}

#newsletterSubmit {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    padding: 0 2rem;
}

.btn-primary,
.btn-success,
.header .btn-getstarted {
    background: var(--ryl-green) !important;
    border-color: var(--ryl-green) !important;
    color: #fff !important;
    box-shadow: 0 8px 18px rgba(var(--bs-primary-rgb), .20);
}
.btn-primary:hover,
.btn-success:hover,
.header .btn-getstarted:hover {
    background: color-mix(in srgb, var(--ryl-green), black 12%) !important;
    border-color: color-mix(in srgb, var(--ryl-green), black 12%) !important;
}

.btn-secondary {
    background: var(--ryl-peach) !important;
    border-color: var(--ryl-peach) !important;
    color: #402a1d !important;
    box-shadow: 0 8px 18px rgba(var(--bs-secondary-rgb), .18);
}
.btn-secondary:hover {
    background: color-mix(in srgb, var(--ryl-peach), black 10%) !important;
    border-color: color-mix(in srgb, var(--ryl-peach), black 10%) !important;
    color: #331f15 !important;
}

.btn-outline-success {
    color: var(--ryl-green) !important;
    border-color: var(--ryl-green) !important;
}
.btn-outline-success:hover {
    color: #fff !important;
    background: var(--ryl-green) !important;
    border-color: var(--ryl-green) !important;
}

/* ----------------- Pills / badges / chips ----------------- */
.badge-episode,
.badge { background: color-mix(in srgb, var(--ryl-green), white 85%); color:#2e3b2a; }
.tag-pastel { background: var(--ryl-green-pastel); color:#2b3327; }
.tag-peach  { background: var(--ryl-peach-100);  color:#3b2a1f; }

/* ----------------- Dividers & section accents ----------------- */
.section-hr { background: var(--ryl-green) !important; height: 3px; width: 96px; border: 0; margin: .75rem auto 1.5rem; }

/* ----------------- Components that referenced old greens ----------------- */
#testimonialsCarousel .carousel-indicators [data-bs-target]{
    background-color: var(--ryl-green) !important;
}
.ryl-accordion .accordion-button:not(.collapsed){
    background-color: color-mix(in srgb, var(--ryl-green), white 92%) !important;
}

/* ----------------- Example section mappings -----------------
   - Keep these if you like the rhythm; remove if you want per-page control.
---------------------------------------------------------------*/
#who-i-work-with,
#podcast.section-pad.bg-light,
#home-socials.ryl-sec.bg-light { background-color: var(--ryl-neutral) !important; }

#home-socials {
    background-color: #ffffff !important;
}

/* Optional: use peach as a highlight band */
.band-peach { background: var(--ryl-peach-100) !important; }
/* === RYL palette tokens === */
:root{
    --ryl-green:        #6b8e62; /* primary */
    --ryl-green-pastel: #b1c1a9;
    --ryl-peach-300:    #d7a98c; /* darker peach */
    --ryl-peach-200:    #e7cfbe; /* lighter peach */
    --ryl-neutral:      #ede9e4;
    --ryl-ink:          #1e1e1e;
}

/* quick utilities */
.bg-neutral { background: var(--ryl-neutral) !important; }
.bg-pastel  { background: var(--ryl-green-pastel) !important; color: var(--ryl-ink) !important; }
.bg-peach   { background: var(--ryl-peach-200) !important; color: var(--ryl-ink) !important; }
.text-ink   { color: var(--ryl-ink) !important; }

/* optional: secondary CTA using peach */
.btn-secondary{
    background: var(--ryl-peach-300) !important;
    border-color: var(--ryl-peach-300) !important;
    color:#fff !important;
}
.btn-secondary:hover{
    filter: brightness(.95);
}
.btn-black-text {
    color: #000 !important;
}

#about-banner h2 {
    color: #ffffff !important;
}
/* Force the whole section to left-align */
#org-overview {
    text-align: center !important;
}
#org-overview .ryl-eyebrow,
#org-overview .ryl-h2,
#org-overview .ryl-bullets {
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
}
/* Clean bullet styling */
.clean-list {
    list-style: none;               /* remove default bullets */
    padding-left: 0;
    margin-left: 0;
}

.clean-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #333;                    /* softer text */
    font-size: 1.05rem;
}

/* Custom green bullet */
.clean-list li::before {
    content: "•";
    color: var(--ryl-green);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1;
    top: 0.2rem;
}

/* Highlighted keywords */
.clean-list span {
    font-weight: 600;               /* semi-bold, not heavy bold */
    color: var(--ryl-ink);          /* keeps it dark grey for balance */
}

.section-content .section-hr {
    margin-left: 0;
}

@media (max-width: 991px) {
    #header .btn-getstarted {
        display: none;
    }
}

.podcast-image img {
    box-shadow: none !important;
}

#podcast .col-lg-6:first-child {
    margin-right: -130px;
}

.header .logo img {
    height: 60px !important;
    max-height: 80px !important;
}
