/* ✅ Import Inter Font */
@import url('https://fonts.googleapis.com/css2?family=Anek+Latin:wght@300;400;500;600;700;800&display=swap');

*{
	margin: 0;
	padding: 0;
}
:root {
    --primary: #0b181f;
    --light: #fff;
    --dark: #000;
	--secondary: #cab38a;  
}
body {
   font-family: "Anek Latin", sans-serif;
    margin: 0;
    padding: 0;
	max-width: 100%;	
}
.container{
	max-width: 1250px;
}
/* ================================
   Desktop Navigation
================================ */
.top-bar{
	background: var(--primary);
	color: #fff;
	padding: 5px 0;
}
.top-bar i{
	color: var(--secondary);
	font-size: 16px;
}
.top-bar a{
	text-decoration: none;
}
.top-bar-inner{
	display: flex;
	gap: 20px;
}
.top-bar-icon {
    display: flex;
    gap: 12px;
    align-items: center;
}
.top-bar-icon p{
    margin: 0 !important;
}
.top-bar-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.site-header .main-header {
	 position: absolute;
      left: 0;
      width: 100%;
      z-index: 10;
      background: #fff !important;
	padding: 20px 0;
}
.site-header.sticky .main-header {
    position: fixed !important;
    top: 0;
    background: #fff !important;
    padding: 12px 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); 
    animation: slideDown 0.4s ease;
}
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.site-header .nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header .nav > li {
  position: relative;
}
.btn-primary {
    display: inline-block;
    position: relative;
    padding: 14px 20px;
    background: var(--secondary);
    color: #000;
    text-decoration: none;
    overflow: hidden;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    z-index: 2;
  }
  .btn-primary-box{
    position:relative;     
    display:block;
    width:100%;
    height:1em;           
  }
  .btn-primary-box .btn-primary-text{
    width:100%;
    text-align:center;
    display:block;
    transition: transform .36s cubic-bezier(.2,.9,.2,1), opacity .28s ease;
    -webkit-backface-visibility:hidden; 
    backface-visibility:hidden;
    will-change:transform, opacity;
    white-space:nowrap;
    box-sizing:border-box;
    padding:0;
    margin:0;
  }
  .btn-primary-box .btn-primary-text:nth-child(1){
    top:0;                 
    transform: translateY(0) !important;
    opacity:1 !important;
  }
  .btn-primary-box .btn-primary-text:nth-child(2){
    top:100%;              
    transform: translateY(0) !important;  
    opacity:0;
  }
  .btn-primary:hover .btn-primary-box .btn-primary-text:nth-child(1){
    transform: translateY(-100%) !important;
    opacity:0 !important;
  }
  .btn-primary:hover .btn-primary-box .btn-primary-text:nth-child(2){
    transform: translateY(-100%) !important; /* top:100% + translateY(-100%) => visible at top:0 */
    opacity:1 !important;
  }
  .btn-primary:focus .btn-primary-box .btn-primary-text:nth-child(1),
  .btn-primary:focus .btn-primary-box .btn-primary-text:nth-child(2){
    transition: transform .36s cubic-bezier(.2,.9,.2,1), opacity .28s ease;
  }
.logo-box {
    position: absolute;
    top: 0px;      
    z-index: 20;
    background: var(--primary);
    padding: 10px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0px 5px 20px rgba(0,0,0,0.3);
}
.logo-box img {
    width: 120px;
    height: auto;
}
.wpcf7-submit {
    background: var(--secondary);
    padding: 8px 25px;
    color: #fff !important;
    text-decoration: none;
    font-weight: 600;
    border: none;
}
.site-header .nav > li > a {
  text-decoration: none;
  padding: 5px 15px;
  font-weight: 600 !important;
  transition: all 0.3s ease;
  display: inline-block;
	color: #000 !important;
}
.site-header .nav > li > a:hover,
.site-header .nav > li.current-menu-item > a,
.site-header .nav > li.current_page_item > a {
      background: var(--secondary);
    border-radius: 10px;
    padding: 5px 15px;
}
.site-header .nav li ul.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px 0;
  list-style: none;
  margin: 0;
  display: none;
  z-index: 9999;
}
.site-header .nav li ul.sub-menu li a {
  padding: 8px 15px;
  color: #333;
  display: block;
  font-weight: 400;
}
.site-header .nav li ul.sub-menu li a:hover {
  background: #f8f9fa;
  color: #0d6efd;
}
.site-header .nav > li:hover > ul.sub-menu {
  display: block;
}
.site-header .nav li ul.sub-menu li {
  position: relative;
}
.site-header .nav li ul.sub-menu li ul.sub-menu {
  top: 0;
  left: 100%;
  margin-left: 1px;
}
@media (max-width: 991px) {
  .site-header .nav {
    display: none; 
  }
}
/* ================================
   Mobile Menu
================================ */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100%;
  background: #fff;
  transition: right 0.3s ease;
  z-index: 1050;
}
.mobile-menu.open {
  right: 0;
}
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 1040;
}
.mobile-menu-overlay.active {
  display: block;
}
.mobile-menu-btn .btn-primary{
	margin-top: 2rem;
	display: inline-block;
	border: 1px solid #fff;
}
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: var(--primary)!important;
    transition: right 0.3s ease;
    z-index: 1050;
}
.mobile-menu-header {
    background-color: #fff;
}
#menu-primary-1 li {
    padding: 10px;
    border-bottom: 1px solid #fff;
}
#menu-primary-1 li a {
    color: var(--white);
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
}

.top-bar-icon .social-icons a i {
    border: 1px solid var(--secondary);
    border-radius: 50%;
    height: 25px;
    width: 25px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
/* ================================
   Breadcrumb Section
=============================== */
.breadcrumb-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    top: 60%;
	z-index: 2;
}
section.breadcrumb-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
section.breadcrumb-section {
    background: url(https://integrityleadershipco.com/wp-content/uploads/2026/02/bradcrumb.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 50vh;
	position: relative;
}
.breadcrumb-item.active {
    color: var(--secondary) !important;
}
ol.breadcrumb {
    font-size: 18px;
    font-weight: 700;
}
.breadcrumb-item+.breadcrumb-item::before{
	color: #fff !important;
}
/* ================================
        Footer Section Css
================================ */
footer{
	background: var(--primary);
	color: #fff !important;
}
footer .footer-top {
    background: url(https://integrityleadershipco.com/wp-content/uploads/2025/12/footer-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
	position: relative;
}
footer .footer-top::before {
 content: "";
  position: absolute;
  inset: 0;
  background: #0b181fa6;
  z-index: 1;
}
footer .footer-top > * {
 position: relative;
  z-index: 2;
}
ul.ftricons figure img {
    width: 15px;
    filter: brightness(100);
}
.footertop-cnt ul.smoicons li a i {
    font-size: 16px;
}
.footertop-cnt p a {
    font-family: "Mulish", sans-serif;
    font-size: 15px;
    color: var(--white);
    font-weight: 400;
}
.footertop-cnt p {
    color: var(--white);
    font-weight: 600;
    font-size: 18px;
    padding-left: 62px;
    letter-spacing: 1px;
    font-family: "Syne", sans-serif;
}
.footer_top .row {
    margin: 0;
}
.footer_top .col-md-6 {
    padding: 0;
}
footer a.footer-logo {
    margin-bottom: 15px;   
}
footer a.footer-logo img {
    width: 230px;
    display: block;
}
.footer_menu {
    padding: 60px 0 30px;
}
.footer-details li {
    display: block;
    margin-bottom: 15px;
    position: relative;
}
ul{
	padding-left: 0rem !important;
	list-style-type: none;
}
ul.ftricons li a {
    border: 1px solid #ffffff36;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    font-size: 14px;
    margin-top: 8px;
}
.icon-box i {
    height: 25px;
    width: 25px;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}
.icon-box {
    display: flex;
    align-items: center;
    gap: 7px;
}
footer ul li.menu-item a {
    display: inline-block;
}
footer ul li.menu-item:last-child a {
    margin: 0;
}
footer h3 {
    margin-bottom: 18px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
footer p {
    margin-bottom: 6px;
    line-height: 27px;
}
footer .menu li {
    position: relative;
    padding-left: 0 !important;
    list-style-type: none;
}
a{
	color: #fff !important;
}
footer .menu li{
	padding-left: 0 !important;
	color: #fff !important;
	line-height: 35px;
	  transition: transform 0.3s ease
}
footer .menu li::after {
  content: "\f061"; 
  font-family: "Font Awesome 5 Free";
  font-weight: 900; 
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%) translateX(-10px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  color: #fff;
}
footer .menu li:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
footer .menu li:hover{
	color: var(--primary) !important;
	transform: translateX(20px);
}
footer .social-icons {
    display: inline-block;
    margin-right: 10px;
    text-align: center;
    line-height: 40px;
    color: #fff;
    border-radius: 5px;
    transition: 0.3s;
}
footer .social-icons a:hover{
	background: var(--primary);
}
footer .social-icons a {
    display: flex;
    padding: 3px;
    text-decoration: none;
    color: var(--light);
    background-color: #bcc6cc;
    margin-bottom: 0.5rem;
    border-radius: 5px;
    align-items: center;
}
footer .social-icons i {
    padding: 0 10px;
    border-right: 1px solid #ffffff25;
}
footer ul li, footer ul li a, footer p, footer p a {
    font-weight: 200;
    position: relative;
    text-decoration: none;
}
footer a.viewmore {
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 500;
    margin-top: 12px;
    display: inline-block;
    font-size: 14px;
}
.copyright {
    padding: 15px 0;
    border-top: 1px solid var(--secondary);
}
.copyright .row {
    align-items: center;
}
.copyright p {
    margin: 0 !important;
    color: var(--white);
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: 300;
}
.copyright p a {
    color: var(--white);
    font-weight: 400;
    text-decoration: underline;
    text-underline-offset: 4px;
}
footer ul.socialicon li a {
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #c98d830f;
    width: 40px;
    height: 40px;
    color: var(--secondary);
    transition: .5s;
    margin-right: 5px;
    backdrop-filter: blur(2px);
    border-radius: 50%;
}
#GoToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--secondary);
    color: #fff;
    font-size: 20px;
    padding: 12px 20px;
    border-radius: 50%;
    z-index: 999;
    transition: all 0.3s ease-in-out;
}
#GoToTop i{
	color: #fff;
}
#GoToTop:hover {
  background: var(--primary);
  transform: scale(1.1);
}
#whatsappbtn {
    cursor: pointer;
    position: fixed;
    bottom: 4%;
    left: 20px;
    z-index: 99999999;
    padding: 0 9px;
    background: #4fcc5d;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 32px;
    color: var(--white);
    z-index: 3;
    display: flex !important;
    align-items: center;
    justify-content: center;
}
#whatsappbtn:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #4fcc5d;
    box-shadow: 0 0 10px #4fcc5d;
    animation: playbtn 3s linear infinite forwards;
    z-index: -3;
}
@keyframes playbtn {
    from {
        transform: scale(1.0);
        opacity: 1;
    }
    to {
        transform: scale(1.5);
        opacity: 0;
    }
}
#whatsappbtn img {
    width: 30px;
}
.logo{
	width: 15%;
    padding: 5px 0;
    border-radius: 10px;
}
.hm-title-bgbox h2 {
    color: #fff;
    font-size: 38px;
    line-height: 50px;
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 30px;
}
.contact-btom-img{
	position: relative;
}
.overlay1{
    background-color: #c6d5ee;
    opacity: 0.1;
    height: 100%;
    width: 100%;
    position: absolute;
}
.contact-btom-img img{
	height: 100%;
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    object-position: center;
}
/* ================================
   		Hero Slider
================================ */
#hero {
    height: 100vh;
    position: relative;
}
.hero-img {
    height: 100vh;
    object-fit: cover;
    filter: brightness(70%);
}
.hero-title {
    font-size: 56px;
    font-weight: 600;
    line-height: 1.2;
}
.hero-sub {
    font-size: 20px;
    margin-top: 15px;
}
a.btn-white {
    padding: 8px 30px;
    text-decoration: none;
    color: #ffffff !important;
    border: 1px solid #fff;
}
a.btn-white:hover{
	background: var(--primary);
	border: 1px solid var(--primary);
}
.hero-arrows {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    z-index: 1;
    flex-direction: column;
}
.arrow-btn {
    width: 45px;
    height: 45px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}
.carousel-caption.text-start {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
	left: auto;
	right: auto;
	width: 700px;
}
/* ================================
   		About Section CSS
================================ */
section{
	padding: 60px 0 30px;
}
.about {
    background: url(https://integrityleadershipco.com/wp-content/uploads/2025/12/who-bg.png) #c9b48c42;
    text-align: center;
    padding: 80px 0;
    background-repeat: no-repeat;
    background-position: bottom right;
}
.about .section-title::after{
	left: 50%;
	transform: translatex(-50%);
}
.section-title {
    position: relative;
    padding-bottom: 10px;
    font-weight: 600;
}
.section-title::after {
    content: "";
    position: absolute;
    left: 0;            
    bottom: 0;
    width: 50px;        
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}
.about .quote{
	 margin-bottom: 2rem;
}
/* ================================
  		What We Stand For
================================ */
.quote {
    font-size: 22px;
    color: #000;
    font-style: italic;
}
.compass-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
	margin-bottom: 12px;
}
.compass-list li {
  position: relative;
  padding-left: 32px;
  font-size: 16px;
  line-height: 40px;
}
.compass-list li::before {
  content: "\f14e"; /* fa-compass */
  font-family: "Font Awesome 6 Free";
  font-weight: 900; /* solid icon */
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-size: 22px;
}
/* ================================
	   Pillar Section
================================ */
.pillar{
	background: url(https://integrityleadershipco.com/wp-content/uploads/2025/12/pillar-bg.avif);
	background-repeat: no-repeat;
	background-position: bottom;
	background-attachment: fixed;
	background-size: cover;
	padding: 60px 0;
	display: flex;
	justify-content: center;
    align-items: center;
}
.pillar-card {
  background: #c9b48c4d;
	position: relative;
	padding: 20px;
	border-radius: 8px;
	border: 1px solid var(--secondary);
  transition: 0.3s ease;
}
.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.pillar-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--primary);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    position: absolute;
    top: -40px;
    border: 2px solid var(--secondary);
}
.pillar-icon i,
.diff-card i{
  transition: transform 0.6s ease-in-out;
}
.pillar-card:hover i,
.diff-card:hover i{
  transform: rotate(360deg);
}
.pillar .pillar-card h5{
	font-size: 25px;
}
.pillar .pillar-card h5,
.pillar .pillar-card p{
	color: #fff;
}
.pillar h2.section-title {
    text-align: center;
    color: #fff;
    margin-bottom: 5rem;
}
.pillar .section-title::after {
    left: 50%;
    transform: translatex(-50%);
}
/* ================================
  		Why TILC
================================ */
section.diffrence {
    background: url(https://integrityleadershipco.com/wp-content/uploads/2025/12/who-bg-scaled.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
section.diffrence .section-title {
    margin-bottom: 3rem;
}
.diffrence .subtitle {
  color: #94a3b8;
  font-size: 18px;
}
.diffrence .section-title::after {
    left: 50%;
    transform: translatex(-50%);
}
.diff-card {
    position: relative;
    backdrop-filter: blur(10px);
    background: #c9b48c26;
    border-radius: 18px;
    padding: 15px 35px;
    height: 100%;
    transition: 0.35s ease;
    color: #000;
    border: 1px dashed #c9b48c;
}
.diff-card:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,0.08);
}
.diff-number {
  font-size: 48px;
  font-weight: 700;
  color: #0b181f2e;
  position: absolute;
  top: 20px;
  right: 25px;
}
.diff-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0b181f, #c9b48c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 20px;
}
.diff-icon i {
    color: #fff;
}
.diff-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
}
.diff-text {
  font-size: 15px;
  color: #cbd5f5;
  line-height: 1.6;
}
.tilc-tagline {
  margin-top: 70px;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
}
/* ================================
       Free Intake Call
================================ */
.north-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
	margin-bottom: 12px;
}
.north-list li {
  position: relative;
  padding-left: 32px;
  font-size: 16px;
  line-height: 40px;
}
.north-list li::before {
  content: "\f6fc"; 
  font-family: "Font Awesome 6 Free";
  font-weight: 900; 
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 22px;
}
.intake a.btn-primary {
    background: var(--primary);
    color: #fff !important;
}
/* ================================
  TILC Division Start
================================ */
.feature-item {
    display: flex;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}
.feature-item:last-child {
    border-bottom: none;
}
.feature-icon {
    width: 52px;
    height: 52px;
	padding: 15px;
    background: #f3ede4;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #7a5a2f;
}
.feature-item h6 {
    font-weight: 700;
    margin-bottom: 6px;
}
.feature-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
}
section.division {
    background: url(https://integrityleadershipco.com/wp-content/uploads/2026/02/division-scaled.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.division img{
    height: 540px;
    object-fit: cover;
    width: 570px;
}
/* ================================
   Quote Section Start
================================ */
.founder-box {
    display: flex;
    width: 70%;
    margin: auto;
    align-items: center;
    justify-content: center;
    gap: 35px;
}
.founder-image img {
    width: 120px;
    height: 120px;
}
/* ================================
  		Founder Highlight
================================ */
.founder .section-title::after {
    left: 50%;
    transform: translatex(-50%);
}
.founder .founder_image{
	height: 200px;
	width: 200px;
	border-radius: 50%;
	margin-bottom: 1rem;
	object-fit: cover;
}
section.founder {
    background: url(https://integrityleadershipco.com/wp-content/uploads/2025/12/founder-bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
/* ================================
   		Contact Section
================================ */
.contact {
    text-align: center;
    background: url(https://integrityleadershipco.com/wp-content/uploads/2025/12/slider1.jpg);
    color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.contact .quote{
	color: #fff;
}
.contact .btn-white:hover{
	color: #fff !important;
}
.contact-btn-box{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
}
/* ================================
   Couching Section
================================ */
.coaching-section .section-title{
	font-size: 25px;
}
section.coaching-section {
    background: url(https://integrityleadershipco.com/wp-content/uploads/2025/12/support-bg.png) var(--primary);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0;
}
.coaching-box {
    background: #fff;
    box-shadow: 0 0 10px 0 #80808042;
    padding: 20px;
    border-radius: 10px;
    height: 550px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.ecosystem-section{
  padding:80px 0;
}
.ecosystem-section h2.section-title {
    text-align: center;
    margin-bottom: 2rem;
}
.ecosystem-section .section-title::after {
    left: 50%;
    transform: translatex(-50%);
}
.ecosystem-box{
  background:#fff;
  border-radius:18px;
  padding:40px 30px;
  text-align:center;
  height: 350px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  border:2px dashed #e6d6bf;	
}
.ecosystem-icon{
  width:120px;
  height:120px;
  background: var(--primary);
  margin:0 auto 20px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.ecosystem-icon img{
  height:auto;
}
.ecosystem-box h4{
  font-size:15px;
  font-weight:700;
  text-transform:uppercase;
  margin-bottom:12px;
}
.ecosystem-box p{
  font-size:14px;
  color:#666;
}
.ecosystem-box .btn{
  background:#b08b57;
  color:#fff;
  border-radius:20px;
  padding:6px 16px;
  font-size:13px;
}
.ecosystem-slider .slick-slide{
  padding:0 15px;
}
.ecosystem-controls{
  margin-top:40px;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:20px;
}
.ecosystem-btn{
  width:42px;
  height:42px;
  border-radius:50%;
  border:1px solid #ccc;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
.ecosystem-btn:hover{
  background:#b08b57;
  color:#fff;
}
.slick-dots{
  position:static;
  margin:0;
}
.slick-dots li button:before{
  color:#b08b57;
  font-size:10px;
}
/* ================================
  Contact Page Css
================================ */
   .contact-page-box {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    height: 100%;
    display: flex;
    border: 1px solid #e6e6e6;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    flex-direction: column;
    justify-content: center;
}    
    .form-control {
        background: #f9f9f9;
        border: 1px solid #ddd;
        color: #000;
    }
    .form-control:focus {
        border-color: var(--primary);
        box-shadow: none;
    } 
    .info-card {
        padding: 35px 25px;
        background: #fff;
        border-radius: 10px;
        border: 1px solid #ececec;
        box-shadow: 0 4px 15px rgba(0,0,0,0.04);
        transition: 0.3s;
		display: flex;
		gap: 30px;
    }
	.info-card a{ 
		color: #000 !important;
		text-decoration: none;		
	}
    .info-card:hover {
        border-color: var(--primary);
        transform: translateY(-4px);
    }
   .info-card i{
        font-size: 28px;
        color: var(--primary);
        margin-bottom: 10px;
    }
    .info-card h6 {
        font-size: 18px;
        margin-bottom: 5px;
        font-weight: 600;
    }
    .map-section iframe {
        width: 100%;
        height: 450px;
        border: 0;
        border-radius: 12px;
        margin-top: 40px;
    }
/* ================================
   Founder Page CSS
================================ */
.founder-tags p {
    display: inline-block;
    background: #cab38a7a;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 1rem;
    margin: 10px 6px 0 0;
}
.founder-img img {
    height: 250px;
    width: 250px;
    object-fit: cover;
    border-radius: 50%;
}
.founder-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.founder-quote {
    border-left: 4px solid var(--primary);
    padding-left: 20px;
    font-size: 1.1rem;
    font-style: italic;
    color: #222;
    margin-top: 30px;
    background: #0b181f2e;
    padding: 10px;
}
.meet-founder .section-title{
	text-align: center;
}
.meet-founder .section-title::after {
    left: 50%;
    transform: translatex(-50%);
}
/* ================================
 		Service Page CSS
================================ */
.overview {
    background: var(--primary);
    color: #fff;
    padding: 20px;
    border-radius: 20px;
    border-left: 5px solid var(--secondary);
    border-right: 5px solid var(--secondary);
	text-align: center;
}
.overview  .section-title::after {
    left: 50%;
    transform: translatex(-50%);
}
.courses-section{
  background: #f2eadc;
	padding: 50px 0;
}
.coaching-card {
  position: relative;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: url('https://integrityleadershipco.com/wp-content/uploads/2026/01/boadroom.jpg') center/cover no-repeat;
}
.coaching-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 20, 25, 0.65),
    rgba(5, 10, 15, 0.95)
  );
}
.card-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    color: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}
.coaching-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
}
.small-text {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* ================================
   About Us Section
================================ */
.about1 {
    background: url(https://integrityleadershipco.com/wp-content/uploads/2025/12/who-bg.png) #c9b48c42;
    text-align: center;
    padding: 80px 0;
    background-repeat: no-repeat;
    background-position: bottom right;
	background-size: 30%;
}
.about1 .section-title::after{
	left: 50%;
	transform: translatex(-50%);
}
.about1 .quote{
	 margin-bottom: 2rem;
}
.philosophy-section {
    background-color: #0b181fe3;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.philosophy-section::before {
    content: "";
    position: absolute;
    left: 0px;
    bottom: -125px;
    width: 448px;
    height: 382px;
    background-image: url("https://integrityleadershipco.com/wp-content/uploads/2026/01/bg-pattern-1-1.png");
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
}
.philosophy-badge {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  width: fit-content;
}
.philosophy-content h2 {
  font-size: 40px;
  font-weight: 500;
}
.philosophy-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}
.philosophy-list li {
  font-size: 22px;
  margin-bottom: 18px;
  position: relative;
  padding-left: 24px;
}
.philosophy-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #c8a85d;
}
.philosophy-text {
    font-size: 18px;
    line-height: 1.7;
    color: #ffffff;
    max-width: 520px;
    margin: 20px 0px 0px;
}
.philosophy-image {
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    height: 91vh;
}
.philosophy-accordion {
    list-style: none;
    padding: 0px 47px;
    margin: 3px 0;
}
.philosophy-accordion {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.accordion-item {
  border-bottom: 1px solid rgba(255,255,255,0.25);
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    color: #cab38a;
    font-size: 22px;
    font-weight: 600;
    padding: 12px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
}

.accordion-header .icon {
  font-size: 26px;
  transition: transform 0.3s ease;
}

/* IMPORTANT FIX */
.accordion-body {
  height: 0;
  overflow: hidden;
  transition: height 0.4s ease;
  color: #d1d5db;
  font-size: 16px;
  line-height: 1.6;
  padding-right: 30px;
	margin-bottom: 10px;
}

.accordion-item.active .icon {
  transform: rotate(45deg);
}

.cornerstones-section {
  background: #fff;
}
.cornerstone-main-image {
  max-width: 90%;
  border-radius: 20px;
}
@keyframes floatXY {
  0%   { transform: translate(0, 0); }
  50%  { transform: translate(0, -15px); }
  100% { transform: translate(0, 0); }
}
.cornerstone-item {
    background: #cab38a4f;
    border: 1px dashed #0b181f;
    border-radius: 18px;
    min-height: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 8px;
    transition: all 0.35s ease;
    margin-bottom: 20px;
}
.cornerstone-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}
.icon-circle {
    width: 65px;
    height: 65px;
    background: linear-gradient(45deg, #000000, #cab38a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -36px;
}
.icon-circle img {
  max-width: 45%;
  transition: transform 0.6s ease-in-out;
}
.cornerstone-item:hover .icon-circle img {
  transform: rotate(360deg);
}
.cornerstone-item h5 {
  color: #0b181f;
}
.cornerstone-item p {
    font-size: 0.95rem;
    text-align: start;
}
.leadership-section {
  background: linear-gradient(135deg, #f0e6dd 0%, #f8f0e3 100%);
  position: relative;
  overflow: hidden;
}
.leadership-section h2 {
  color: #0b181f;
}
.ai-limit-card {
  background: #cab38a;
  color: #000;
  font-weight: 600;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ai-limit-card:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.floating-img img {
  max-width: 74%;
  border-radius: 20px;
  animation: floatXY 8s ease-in-out infinite;
  position: relative;
  z-index: 2;
  box-shadow: none !important;
  background: transparent;
}
@keyframes floatXY {
  0% {
    transform: translate(0px, 0px) rotate(-2deg);
  }
  25% {
    transform: translate(10px, -15px) rotate(0deg);
  }
  50% {
    transform: translate(0px, -25px) rotate(2deg);
  }
  75% {
    transform: translate(-10px, -15px) rotate(0deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(-2deg);
  }
}
.floating-shape {
  position: absolute;
  top: 10%;
  left: 50%;
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #cba66f, #2d2a28) !important;
  border-radius: 50% 50% 60% 60%;
  transform: translateX(-50%);
  z-index: 1;
  filter: blur(80px);
  animation: morph 10s ease-in-out infinite alternate;
}
@keyframes morph {
  0% { border-radius: 50% 50% 60% 60%; transform: translateX(-50%) scale(1); }
  25% { border-radius: 60% 40% 50% 70%; transform: translateX(-50%) scale(1.05); }
  50% { border-radius: 50% 60% 40% 50%; transform: translateX(-50%) scale(1.1); }
  75% { border-radius: 55% 45% 60% 50%; transform: translateX(-50%) scale(1.05); }
  100% { border-radius: 50% 50% 60% 60%; transform: translateX(-50%) scale(1); }
}
.leadership-bg-shape {
  position: absolute;
  top: -100px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: rgba(202,179,138,0.15);
  border-radius: 50%;
  transform: rotate(45deg);
  z-index: 0;
}
/* ================================
   Performance and result
================================ */
.sucess{
    position: relative;
    background-image: url("https://integrityleadershipco.com/wp-content/uploads/2026/01/sucess-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    overflow: hidden;
	color: #fff;
	text-align: center;
	background-attachment: fixed;
}
.sucess .section-title::after {
    left: 50%;
    transform: translatex(-50%);
}
.sucess::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.sucess .container{
    position: relative;
    z-index: 2;
}
section.next-step {
    background: var(--primary);
    width: 90%;
    margin: auto;
    margin-bottom: 50px;
    padding: 40px;
    text-align: center;
    color: #fff;
    border-radius: 10px;
    border-left: 5px solid var(--secondary);
    border-right: 5px solid var(--secondary);
}
.next-step .section-title::after {
    left: 50%;
    transform: translatex(-50%);
}
/* ================================
   Responsive
================================ */
@media(max-width: 1200px){
	.about{
		background-size: 400px;
	}
}
@media(max-width: 1024px){
	.hero-title{
		font-size: 45px;
	}
	.coaching-box{
		height: 600px;
	}
	.philosophy-badge{
		margin-bottom: 0;
	}
	.philosophy-content h2{
		margin-bottom: 0;
		font-size: 40px;
	}
	
}

@media(max-width: 991px){
	.coaching-box {
		height: auto;
	}
	.ecosystem-section {
		padding: 40px 0;
	}
    .philosophy-content h2 {
		font-size: 36px;
		margin-top: 8px;
	  }
    .philosophy-list li {
		font-size: 18px;
	  }
}

@media(max-width: 767px){
	.top-bar{
		display: none;
	}
	.carousel-caption.text-start{
		width: 85%;
	}
	section {
		padding: 45px 0 25px;
	}
}

@media(max-width: 667px){
	.hero-title {
		font-size: 35px;
	}
	.hero-sub {
		font-size: 16px;
	}
	.about{
		background-size: 70%;
	}
	.founder-box{
		width: 100%;
	}
}

@media(max-width: 568px){
	.hero-arrows{
		right: 20px;
	}
	.philosophy-content h2 {
		font-size: 26px;
	}
}

@media(max-width: 479px){
	.about .quote {
		margin-bottom: 1rem;
	}
	.contact-page-box{
		padding: 25px;
	}
}

@media(max-width: 414px){
	.hero-title {
		font-size: 25px;
	}
	.coaching-section .section-title {
		font-size: 22px;
	}
	.quote {
		font-size: 20px;
	}
	.accordion-header{
		font-size: 18px;
		padding: 10px;
	}
}

@media(max-width: 375px){
	.contact-btn-box {
		gap: 0px;
		flex-direction: column;
	}
	.hero-arrows {
		right: 4px;
	}
	.philosophy-image{
		height: 50vh;
	}
	section {
		padding: 30px 0 20px;
	}
}