/**
 * Custom CSS for Leancon-AI Theme
 * Additional styles and components
 */

/* ===========================
   Features Grid
   =========================== */
.btn-primary{
	text-decoration:none;
}
h3 {
    font-size: 32px;
    line-height: 40px;
    font-weight: 600;
    color: var(--text-dark);
    font-family: "Readex Pro", sans-serif;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background-color: var(--white);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.feature-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.feature-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===========================
   Call to Action Section
   =========================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-section .btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
}

.cta-section .btn-primary:hover {
    background-color: var(--secondary-color);
    color: var(--text-dark);
}

/* ===========================
   Page Content Styles
   =========================== */
.page-content,
.entry-content {
    margin-top: 30px;
}

.page-content p,
.entry-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.page-content h2,
.entry-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.page-content h3,
.entry-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.page-content ul,
.entry-content ul {
    list-style: disc;
    margin-left: 30px;
    margin-bottom: 20px;
}

.page-content ol,
.entry-content ol {
    list-style: decimal;
    margin-left: 30px;
    margin-bottom: 20px;
}

.page-content li,
.entry-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* ===========================
   Blog/Archive Styles
   =========================== */
.content-area {
    flex: 1;
    max-width: 800px;
}

.content-wrapper {
    display: flex;
    gap: 40px;
}

.content-wrapper .content-area {
    flex: 1;
}

.page-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 0;
}

.has-sidebar .container {  
	display: flex;
	flex-direction: column;
	align-items: flex-start;
/*	gap: 48px;*/
	flex: 1 0 0;
    width: 100%;
}

.has-sidebar .content-area {
    flex: 1;
}

article {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

article:last-child {
    border-bottom: none;
}

.entry-header {
    margin-bottom: 20px;
}

.entry-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

.entry-title a {
    color: var(--text-dark);
}

.entry-title a:hover {
    color: var(--primary-color);
}

.entry-meta {
    font-size: 14px;
    color: var(--text-light);
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 10px;
}

.entry-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.entry-meta svg {
    opacity: 0.7;
}

.post-thumbnail {
    margin-bottom: 25px;
    border-radius: 10px;
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.post-thumbnail:hover img {
    transform: scale(1.05);
}

.read-more {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

.entry-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-light);
}

.entry-footer span {
    margin-right: 20px;
}

/* ===========================
   Sidebar Styles
   =========================== */
.widget-area {
    width: 300px;
    flex-shrink: 0;
}

.widget {
    margin-bottom: 40px;
    padding: 25px;
    background-color: var(--light-bg);
    border-radius: 10px;
}

.widget-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.widget ul {
    list-style: none;
}

.widget li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.widget li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.widget a {
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.widget a:hover {
    color: var(--primary-color);
}

/* ===========================
   Navigation Styles
   =========================== */
.post-navigation,
.posts-navigation {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
}

.nav-links {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.nav-previous,
.nav-next {
    flex: 1;
}

.nav-subtitle {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.nav-title {
    font-weight: 600;
    color: var(--primary-color);
}

/* ===========================
   Comments
   =========================== */
.comments-area {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
}

.comments-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

.comment-list {
    list-style: none;
    margin: 0;
}

.comment {
    margin-bottom: 30px;
    padding: 20px;
    background-color: var(--light-bg);
    border-radius: 10px;
}

/* ===========================
   Questions CTA Section
   =========================== */
.questions-cta-section {
    background: radial-gradient(50% 50% at 50% 50%, #92D6B9 0%, rgba(146, 214, 185, 0.00) 100%), #102D30;
	background-blend-mode: overlay, normal;
    padding: 40px 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.questions-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background-image: linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.03) 49%, rgba(255, 255, 255, 0.03) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(255, 255, 255, 0.03) 49%, rgba(255, 255, 255, 0.03) 51%, transparent 52%); */
    background: url('https://wordpress-1388740-5985307.cloudwaysapps.com/wp-content/uploads/2025/11/footerbg.png') no-repeat scroll 0 0;
    background-size: cover;
    opacity: 0.5;
}

.questions-cta-content {
    position: relative;
    z-index: 1;
}

.questions-cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
}
.questions-cta-content h3 {
    color: #fff;
	margin-bottom: 16px;
}
.questions-cta-content p {
    font-size: 16px;
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: rgb(255 254 250 / 80%);
    font-weight: 300;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #1D7377;
    color: var(--white);
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(155, 255, 197, 0.3);
}
.timeline-container {
	max-width: 1118px;
	margin: 0 auto;
}

.timeline-block {
	background: radial-gradient(50% 50% at 50% 50%, #92D6B9 0%, rgba(146, 214, 185, 0.00) 100%), #102D30;
background-blend-mode: overlay, normal;
	border-radius: 20px;
	padding: 50px 60px 60px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}
.timeline-block h2{
	color:#fff;
}
.timeline-title {
	text-align: center;
	font-size: 22px;
	font-weight: 500;
	color: #ffffff;
	margin-bottom: 50px;
	letter-spacing: 0.3px;
}

.timeline-title span {
	font-weight: 700;
}

.timeline-wrapper {
	position: relative;
	padding: 0 30px;
}

/* Progress bar container */
.timeline-track-wrapper {
	position: relative;
	margin-top: 35px;
	margin-bottom: 20px;
}

/* Progress bar background */
.timeline-track {
	position: relative;
	height: 14px;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 20px;
	overflow: visible;
	z-index: 2;
}

/* Animated progress fill */
.timeline-progress {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	background: #ffffff;
	border-radius: 20px;
	width: 100%;
	animation: progressAnimation 2s ease-out;
	z-index: 2;
}

@keyframes progressAnimation {
	from {
		width: 0%;
	}
	to {
		width: 100%;
	}
}

/* Tick marks container - extends through the progress bar */
.timeline-ticks {
	position: absolute;
	top: -35px;
	left: 8.33%;
	right: 8.33%;
	height: 85px;
	display: flex;
	justify-content: space-between;
	padding: 0;
	z-index: 1;
}

.tick-mark {
	width: 2px;
	height: 100%;
	background: rgba(255, 255, 255, 0.25);
}

/* Month markers container */
.timeline-months {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	padding: 0;
}

.month-marker {
	flex: 1;
	text-align: center;
}

.month-label {
	font-size: 14px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.65);
	letter-spacing: 0.2px;
}



.btn-secondary svg {
    width: 20px;
    height: 20px;
}

/* ===========================
   Footer Styles
   =========================== */
.site-footer {
    background-color: #ffffff;
    padding: 24px 0;
    border-top: 1px solid #e5e5e5;
    margin-top: 0;
}

.footer-content {
/*     display: grid;
    grid-template-columns: minmax(200px, 1fr) auto minmax(200px, 1fr); */
	display:flex;
    align-items: center;
    gap: 40px;
    max-width: 1344px;
    margin: 0 auto;
}

.footer-left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.footer-copyright {
    font-size: 14px;
    color: #666666;
    margin: 0;
    line-height: 1.5;
}

.footer-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-navigation {
    display: flex;
}

.footer-navigation ul {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.footer-navigation li {
    margin: 0;
    padding: 0;
}

.footer-navigation a {
    font-size: 16px;
	line-height:24px;
    color: #102D30;
    text-decoration: underline;
    transition: color 0.3s ease;
    font-weight: 400;
    white-space: nowrap;
}

.footer-navigation a:hover {
    color: var(--primary-color);
}

.footer-right {
    display: flex;
    margin-left: auto;
}

.footer-social {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-social a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ebeae6;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s ease;
    flex-shrink: 0;
}
.faqSubContent{
    color: #102D30;
}
.site-footer .row {
    padding-left: 15px;
    padding-right: 15px;
}
.footer-social a:hover {
/*    background-color: var(--primary-color);*/
    background-color: #ffffff;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 155, 155, 0.3);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

/* ===========================
   Responsive Adjustments
   =========================== */
.questions-cta-content { 
    text-align: center;
    margin: 0 auto;
}
p.faqSubContent {
    color: #000000;
    margin-bottom: 20px;
}
.faq-accordion {
    width: 100%;
    background: #1D7377;
    padding: 0;
    border-radius: 24px;
	max-width: 892px;
    margin: 0 auto;
	overflow:hidden;
}

.footer-content p{
    margin-bottom: 0px;
}
 p.footer-copyright {
    border-right: 2px solid #ddd;
    padding-right: 20px;
    padding-left: 0px;
    font-size: 16px;
    line-height: 24px;
    color: #102D30;
}
.site-footer .row{
    padding-left: 20px;
    padding-right: 20px;
}

.termmenufoot ul#footer-menu {
    padding-left: 20px;
}

.statsDiv {
    width: 100%;
    margin: 50px auto;
}

p.footer-copyright {
    border-right: 2px solid #ddd;
    padding-right: 10px;
    padding-left: 0px;
}



/*-- Terms page CSS --*/
.terms-page {
	margin-bottom:30px;
}
.terms-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1 0 0;
    padding: 150px 0 0px 0;
    background-blend-mode: overlay, normal;
}
.terms-wrapper .container, .terms-content .container {
	max-width:892px;
}
.page-id-205 .questions-cta-section, .page-id-3  .questions-cta-section{
	display:none;
}
.terms-page h1 {
    font-size: 48px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #102D30;
    text-align: left;
    margin: 0 auto;
    font-family: "Readex Pro";
    line-height: 56px;
    padding-bottom: 20px;
	text-transform:uppercase;
}
.terms-page h1 span {
	color:#1d7377;
}
.terms-page h2{
	font-family: "Readex Pro";
    font-size: 32px;
    line-height: 40px;
    font-weight: 600;
    color: #102D30;
    padding-bottom: 16px;
	text-align:left;
	margin:0;
}
.terms-page h3{
	font-family: "Readex Pro";
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    color: #102D30;
    padding: 0px 0 10px;
	text-align:left;
	margin:0;
	text-transform: capitalize;
}
.terms-page p {
	font-size: 16px;
    margin-bottom: 20px;
    line-height: 24px;
    font-weight: 400;
    font-family: "Inter";
	color: var(--text-light);
}

.terms-banner, .terms-banner2 {
	margin:0;
	border-radius:12px;
	overflow:hidden;
	width:100%;
}
.terms-banner {
	margin:12px 0 0 0;
}
.terms-banner img , .terms-banner2 img {
	margin-bottom:20px;
	width:100%;
	border-radius: 12px;
}
.terms-page ul {
	margin:0 0 30px 15px;
	padding:0;
}
.terms-page ul li {
	list-style:disc;
	color: var(--text-light);
	font-weight: 400;
    font-family: "Inter";
}
.table-responsive {
	width:100%;
}
.table-responsive table {
	width:100%;
	border-collapse:collapse;
	font-size: 16px;
    margin-bottom: 30px;
    line-height: 24px;
    font-weight: 400;
    font-family: "Inter";
	color: var(--text-light);
}
.table-responsive th, .table-responsive td {
    padding: 5px 10px;
	border: 1px solid #ddd;
	font-size: 16px;
    margin-bottom: 20px;
    line-height: 24px;
    font-family: "Inter";
}
/*-- END terms page CSS --*/
.single-case-study .terms-page {
	margin-bottom:0;
}

/* Responsive Design */

@media (max-width: 1024px) {
.footer-content {
flex-direction:column;
}
.footer-right {
margin: 0 auto;
}	
}
@media (max-width: 768px) {
.timeline-block {
		padding: 40px 30px 50px;
		border-radius: 16px;
	}

	.timeline-wrapper {
		padding: 0 20px;
	}

	.timeline-title {
		font-size: 19px;
		margin-bottom: 40px;
	}

	.month-label {
		font-size: 12px;
	}

	.tick-mark {
		height: 40px;
		top: -30px;
	}

	.timeline-track {
		height: 12px;
	}
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .has-sidebar .container {
        flex-direction: column;
    }

    .widget-area {
        width: 100%;
    }

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

    .entry-title {
        font-size: 26px;
    }

    .nav-links {
        flex-direction: column;
    }

    .questions-cta-content h2 {
        font-size: 32px;
    }

    .questions-cta-content p {
        font-size: 16px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        display: block !important; width: 100% !important;
    }

    .footer-left {
        order: 1;
    }

    .footer-center {
        order: 2;
    }

    .footer-right {
        order: 3;
    }

    .footer-copyright {
        text-align: left;
    }

    .footer-navigation ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px 25px;
    }

    .footer-social {
        justify-content: flex-start;
    }
	.termmenufoot ul#footer-menu {
		padding-left: 0;
	}
h3 {
  font-size: 18px;
  line-height:24px;
}
.footer-left {
order: unset;
flex-direction: column;
}
p.footer-copyright {
	border: 0;
	padding: 0 0 10px;
}
.terms-page h1 {
	font-size: 32px;
    line-height: 40px;
}
.terms-page h2 {
	font-size: 24px;
    line-height: 30px;
}
.terms-page h3 {
	font-size: 20px;
    line-height: 28px;
}
.terms-wrapper {
    padding-top: 130px;
}
}

/* Mobile */
@media (max-width: 480px) {
.timeline-block {
		padding: 30px 20px 40px;
	}

	.timeline-wrapper {
		padding: 0 10px;
	}

	.timeline-title {
		font-size: 16px;
		margin-bottom: 35px;
	}

	.month-label {
		font-size: 10px;
	}

	.tick-mark {
		height: 35px;
		width: 1px;
	}

	.timeline-track {
		height: 10px;
	}

    .features-grid {
        gap: 20px;
    }

    .feature-item {
        padding: 20px;
    }

    .feature-item h3 {
        font-size: 18px;
    }

    .cta-section {
        padding: 50px 0;
    }

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

    .cta-content p {
        font-size: 16px;
    }

    .entry-title {
        font-size: 22px;
    }

    .widget {
        padding: 20px;
    }

    .questions-cta-section {
        padding: 50px 0;
    }

    .questions-cta-content h2 {
        font-size: 26px;
    }

    .questions-cta-content p {
        font-size: 15px;
    }

    .btn-secondary {
        padding: 12px 25px;
        font-size: 14px;
    }

    .footer-content {
        gap: 15px;
    }

    .footer-navigation ul {
        gap: 10px;
    }

    .footer-navigation a {
        font-size: 13px;
    }

    .footer-social {
        gap: 10px;
    }

    .footer-social a {
        width: 36px;
        height: 36px;
    }

    .footer-social svg {
        width: 16px;
        height: 16px;
    }

    .footer-copyright {
        font-size: 13px;
    }
}

@media only screen and (min-width: 768px) {
	.container, .container-md, .container-sm {
		 max-width: 100%;
	}
}
