body {
    -webkit-font-smoothing: antialiased; /* Chrome, Safari */
    -moz-osx-font-smoothing: grayscale; /* Firefox on Mac */
}

img {
    /* Ensures the browser uses high-quality resampling */
    image-rendering: -webkit-optimize-contrast; /* Webkit/Chrome */
    image-rendering: high-quality; /* Standard */
}

/* No padding side in bootstrap elements */
.no-padding-sides{
	padding:0!important;
}

/* Create the Counter */
.numbered-accordion {
    counter-reset: accordion-counter;
}

/* Customize and insert the number before the title */
.numbered-accordion .elementskit-card  .elementskit-card-header::before {
    counter-increment: accordion-counter;
    content: counter(accordion-counter, decimal-leading-zero); /* Adds the decimal zero (01, 02...) */
    margin-right: 20px;
    color: #A166A1; /* Purple color */
    font-weight: bold;
    font-family: inherit;
}

/* Aligmnet witht he text */
.numbered-accordion .elementskit-card-header {
    display: flex;
    align-items: center;
}

.numbered-accordion .elementskit-card-header .ekit-accordion--toggler
{
	width:100%;
}

/* Put the quote behind the text */
.arden-quote-carousel .qodef-e-quote{
	position: absolute;
  bottom: 66px;
  z-index: -1;
}

.arden-quote-carousel .qodef-e-quote svg path{
	fill:#1F1526;
}

.clients-carousel .swiper-slide-image{
	max-height:70px;
}

/* First, remove the default bullets */
.custom-icon-list ul {
    list-style: none; /* Hides the standard dot */
    padding-left: 0;   /* Optional: Removes default indentation */
}

/* Now, add the custom icon before each list item */
.custom-icon-list ul li::before {
    content: "\f054"; /* <--- Replace this with your icon's Unicode */
    font-family: "Font Awesome 5 Free"; /* This tells the browser to use the icon font */
    font-weight: 900; /* REQUIRED for solid icons to show up */
    color: #B597BD!important; /* Purple color */
    display: inline-block;
    width: 1em; /* Space between icon and text */
}

.custom-icon-list ul {
  margin: 0;
  padding: 0;
}

.custom-icon-list ul li {
  line-height: 1.5;        /* tight — controls wrapped line spacing */
  margin-bottom: 0.6em;    /* this replaces the "between items" gap */
  padding-left: 1.2em;
  text-indent: -1em;     /* hanging indent from previous fix */
}

.custom-icon-list ul li:last-child {
  margin-bottom: 0;
}

/*body div[data-elementor-type="wp-page"], main#content{
    padding-top: 100px!important;
}*/
/*
body.logged-in.admin-bar #arden-header{
	margin-top:32px;
}
*/

.purple-text{
	color: #B597BD!important;
}

.cs-term-link{
	color: #FFF!important;
	line-height: 1.8;
}

.cs-term-link:hover{
	
}

.cs-term-link:not(:last-child)::after {
    content: ' | ';
	color: #FFF!important;
}

.cs-coach{
	color: #FFF!important;
}

.cs-coach:hover{
}

.cs-coach h4{
	color: #FFF;
}

/******************************************************************** Coach Archive Shortcode ********************************************************************/

.coaches-archive {

}
.coaches-archive .row > [class*="col-"] {
    overflow: hidden;
}

.coach-item {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1 / 1;
    margin-bottom: calc(var(--bs-gutter-x) * 1);
    max-width: 400px;
    /* removed min-height — it was the culprit */
}

.coach-item-inner {
    display: flex;
    position: relative;
    flex-direction: column-reverse;
    justify-content: space-between;
    overflow: hidden;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.4s ease;
    z-index: 1;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.coach-item .bottom-info {
	display:flex;
	flex-direction: column;
    align-items: center;
	color:#FFF;
	background-color:#2b202f;
	font-family: "Rubik", Inter, Poppins;
    font-size: 18px;
    letter-spacing: -0.05em;
	width:100%;
	padding:20px 30px;
	z-index: 2;
	position: relative;
    backface-visibility: hidden;
}

.coach-item .coach-name{
	font-size:24px;
	margin-bottom:10px;
}

.coach-item .coach-short-bio {
	font-size: 15px!important;
}

/* Move the background image here */
.coach-item-inner::before {
	content: "";
	position: absolute;
	top: 0; left: 0; width: 100%; height: 100%;
	background-image: var(--coach-bg);
	background-size: cover;
    background-position: top center;
	filter: grayscale(30%);
	transition: transform 0.4s ease, filter 0.4s ease;
	z-index: 0; /* Keep it behind text */
	transform-origin: center center;
	will-change: transform;
	backface-visibility: hidden;
}

.coach-item-inner:hover::before{
	filter: grayscale(0%);
	transform: scale(1.05);
}

/* default / mobile — square */
.coach-item {
    aspect-ratio: 1 / 1;
    max-width: 100%;
}

@media (min-width: 576px) {
    .coach-item {
        max-width: 280px;
    }
}

@media (min-width: 768px) {
    .coach-item {
        max-width: 320px;
    }
}

@media (min-width: 992px) {
    .coach-item {
        max-width: 360px;
    }
}

/* larger desktop — start going portrait */
@media (min-width: 1200px) {
    .coach-item {
        aspect-ratio: 4 / 5;
        max-width: 400px;
    }
}

/* wide desktop — even more room at the bottom */
@media (min-width: 1400px) {
    .coach-item {
        aspect-ratio: 1 / 1.2;
        max-width: 420px;
    }
}
/********************************************************************* Single Coach Template ********************************************************************/

.single-coach #arden-header .arden-logo{
	align-items: center;
}

#single-coach-main-content .container{
	/*max-width:1300px;*/
}

#single-coach-main-content{
	font-family: "Open Sans", Inter, Poppins;
}

#single-coach-main-content h1, #single-coach-main-content h2, #single-coach-main-content h3, #single-coach-main-content h4, #single-coach-main-content h5, #single-coach-main-content h6{
	font-family: "Rubik", Inter, Poppins;
}

.single-coach-main{
	display: flex;
	position: relative;
	flex-direction: column;
	width:100%;
	padding: 60px 0px 0px 0px;
	background-color: transparent;
    background: linear-gradient(140deg,#232323 0%, #101012 20%, #232323 100%);
}

.single-coach-main, .single-coach-main h1, .single-coach-main h2, .single-coach-main h3, .single-coach-main h4, .single-coach-main h5, .single-coach-main h6, .single-coach-main span{
	color: #FFF;
}

.single-coach-card-main{
	scroll-margin-top: 100px;
}

.single-coach-card{
	background-color: transparent;
    color: #ffffff;
	padding: 100px 0px;
	
}

.single-coach-image-circle {
  /* 1. Make it a perfect square */
  width: 400px;
  height: 400px;

  /* 2. Create the circular shape */
  border-radius: 50%;

  /* 3. Add the purple border */
  /* border: 5px solid #9b51e0;*/ /* This matches the purple from your image */

  /* 4. Hide any part of the image that spills out of the circle */
  overflow: hidden;

  /* Optional: Centers the image on the page */
  margin-bottom: 50px;
}

.single-coach-image-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-coach-image-box{
	width:100%;
	border-radius:20px;
	border: 3px solid #FFF;
	overflow: hidden;
	position: relative;
	/*
	top:100px;
	left: 2%;
	*/
}

.coach-img-box{
	position: relative;
	z-index: 1;
}

.coach-img-backlight{
	position: absolute;
    z-index: 0;
    top: 5%;
    transform: rotate(35deg) scale(2.5);
}


.single-coach-card-content-attr{
	align-content:center;
	justify-content:center;
	/* padding-left: 80px; */
}

.single-coach-social-bar {
    margin-top: 15px; /* Spacing from the $focus text */
	padding-left: 2px;
    display: flex;
    gap: 15px; /* Space between icons */
    align-items: center;
}

.single-coach-social-bar a, .single-coach-social-bar a span {
    color: #ffffff; /* White icons */
    font-size: 16px; /* Adjust icon size */
    transition: color 0.4s ease;
    text-decoration: none;
}

.single-coach-social-bar a{
	display: flex;
	align-items: center;
}

.single-coach-social-bar a i{
    font-size: 30px; /* Adjust icon size */
	padding-right:15px;
	transition: color 0.4s ease;
}

.single-coach-social-bar a:hover, .single-coach-social-bar a:hover i, .single-coach-social-bar a:hover span {
    
}

#coach-education{
	scroll-margin-top: 200px;
}

.single-coach-education{
	display: flex;
    flex-direction: column;
    padding: 40px 0px;
    row-gap: 24px;
}

.single-coach-education li{
	line-height: 2em;
}

#coach-description{
	scroll-margin-top: 200px;
}

.single-coach-description{
	display: flex;
    flex-direction: column;
    padding: 40px 0px;
    row-gap: 24px;
}

.single-coach-description-content{
	display: flex;
    flex-direction: column;
    row-gap: 10px;
	margin-top:4px;
}

.single-coach-content-info {
  /* animation: rotate-bg-color 10s infinite; */
	background: #6b307b38;
}

.single-coach-cta-container{
	background: #e5e5e5;
	padding:40px 0px;
	scroll-margin-top: 200px;
}

.single-coach-cta-container, .single-coach-cta-container h1, .single-coach-cta-container h2, .single-coach-cta-container h3, .single-coach-cta-container h4, .single-coach-cta-container h5, .single-coach-cta-container h6, .single-coach-cta-container span{
	color: #6B307B;
}

.single-coach-cta{
	display:flex;
	flex-direction:column;
	row-gap: 10px;
	justify-content: center;
    align-items: center;
}

.single-coach-cta a{
	width: max-content;
	margin-top: 40px;
}

.single-coach-cta-btn{
	display: inline-block;
	background-color: #6B307B;
	color: #FFF!important;
    font-family: "DM Sans", Inter, Poppins;
    font-size: 14px;
    font-weight: bold;
    text-transform: capitalize;
    font-style: normal;
    line-height: 1.4em;
    letter-spacing: -0.3px;
    transition-duration: 0.4s;
    border-style: none;
    border-radius: 4px 4px 4px 4px;
    padding: 14px 22px 14px 22px;
	text-decoration: none;
}

.single-coach-cta-btn:hover{
	background-color: #7B3073;
    color: #FFF!important;
}

/* First, remove the default bullets */
.single-coach-main ul {
    list-style: none; /* Hides the standard dot */
    padding-left: 0;   /* Optional: Removes default indentation */
}

/* Now, add the custom icon before each list item */
.single-coach-main ul li::before {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    display: inline-block;
    width: 1em;
}


@keyframes rotate-bg-color {
	0% {
		background-color: #6B307B;
	}
	
	50% {
		background-color: #7B3073;
	}
	
	100% {
		background-color: #6B307B;
	}

}

.single-coach-toc-container{
	display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* --- Sidebar Styling --- */
.sidebar-toc {
	flex: 0 0 250px;
    position: relative;
    top: auto;
    left: auto;
    height: auto;
	z-index: 9999;
}

/* Place education panel cleanly to the left of TOC and avoid occlusion */
.single-coach-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 250px;
    gap: 2rem;
    align-items: start;
}

.education-certification {
    grid-column: 1;
    position: relative;
    z-index: 2;
    width: 100%;
}

.toc-card {
	position: sticky;
	top: 20%;
	width: 220px;
	background: #E5E5E5;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	border-radius: 20px;
	border: 1px solid #e8e8e857;
	padding: 1rem 1.5rem;
	text-align: right;
	z-index:9999;
	box-shadow: 0px 12px 56px rgba(6, 28, 61, 0.1);
}

/* Name Header */
.toc-header {
	font-size: 12px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #101012!important;
	padding: 10px 0px;
	margin-bottom: 20px;
	font-weight: 700;
	border-bottom: 1px solid #101012;
}

/* Navigation List */
.toc-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.toc-nav ul li::before{
	content: none!important;
}

.toc-nav li {
  
}

.toc-nav a:not(.single-coach-cta-btn) {
  display: inline-block;
  padding: 5px 0;
  text-decoration: none;
  color: #101012; /* Grey text like Image 1 */
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.toc-nav a:hover {
  
}

/* The CTA Button */
.toc-btn {
  display: block;
  margin-top: 25px;
  background-color: #5d2e6b; /* Purple to match Arden Coaching */
  color: #fff;
  text-align: center;
  padding: 12px 10px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  transition: background 0.3s;
}

.toc-btn:hover {
  background-color: #4a2455;
}

.single-coach-related-coaches-main{
	
}

.single-coach-related-coaches-div{
	padding: 40px 0px;
	text-align: center;
}

.single-coach-related-coaches-div h2{
	text-align: center;
	padding: 40px 0px;
}

/***************************************************************** Related Team Author Box **************************************************************/

.author-box-container{
}
.author-box-container h4{
	/*margin-bottom: 0px;*/
}

.author-box-container .author-short-bio {
    text-align: left;
    padding-left: 10px;
}

.author-box-container a h4{
	color: #FFF;
	text-align: left;
    padding-left: 10px;
    padding-top: 10px;
}

.author-box-img-div{
	
}

.author-box-img{
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top;
	border-radius: 200px;
	height:80px;
	width: 80px;
    padding-right: 15px!important;
}

.author-box-content{
	text-align: center;
	color: #FFF;
	align-content: center;
}

.author-box-btn {
  display: inline-block;
  position: relative;
	top: -16px;
  background-color: #5d2e6b;
  color: #fff!important;
  text-align: center;
  padding: 5px 10px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  transition: background 0.3s;
}

.author-box-btn:hover {
  background-color: #4a2455;
}


/***************************************************************** Neon Glowing Border Effect ***********************************************************/

/* --- Standard Spin Animation (Works everywhere) --- */
@keyframes spin-standard {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ===========================
   1. ROUND IMAGE (Neon Box)
   =========================== */
.neon-box {
    position: relative;
    display: inline-block; /* Crucial for wrapper to fit image */
    z-index: 1;
    padding: 0;
    border-radius: 50%;
}

.neon-box img {
    position: relative;
    z-index: 2; /* Sits on top of the spinning border */
    display: block; /* Removes bottom spacing */
    border-radius: 50%;
    background: #101012; /* Prevents see-through */
    /* Ensure image fits */
	transform: scale(0.97);
    object-fit: cover; 
}

/* The Spinning Border Layer */
.neon-box::before {
    content: "";
    position: absolute;
    z-index: -1; /* Sits BEHIND the image */
    top: -5px; left: -5px; right: -5px; bottom: -5px; /* 5px Border thickness */
    background: conic-gradient(#6B307B, #B597BD, #6B307B);
    border-radius: 50%;
    animation: spin-standard 3s linear infinite;
}

/* ===========================
   2. BUTTON (Neon Btn)
   =========================== */
.neon-btn {
    position: relative;
    display: inline-block; /* REQUIRED: 'a' tags are inline by default and won't animate correctly without this */
    text-decoration: none;
    color: #fff !important; /* Force white text */
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 50px;
    overflow: hidden; /* Clips the spinning square to pill shape */
    z-index: 1;
    border: none;
}

/* The Spinning Gradient Background (Giant Square) */
.neon-btn::before {
    content: '';
    position: absolute;
    z-index: -2;
    top: -350%;
    left: -50%;
    width: 200%;
    height: 800%;
    background: conic-gradient(transparent, #6B307B, #B597BD, #6B307B, transparent);
    animation: spin-standard 3s linear infinite;
}

/* The Inner Dark Background (To make text readable) */
.neon-btn::after {
    content: '';
    position: absolute;
    z-index: -1;
    /* This '3px' is your border thickness */
    top: 3px; left: 3px; right: 3px; bottom: 3px;
    background: #101012; /* This MUST match your page background color */
    border-radius: 50px;
}

/* Optional: Hover Effect */
.neon-btn:hover::before, .neon-box:hover::before {
    animation-duration: 1s;
}