/*
Theme Name: Leancon-AI
Theme URI: https://leancon.ai
Author: Leancon Team
Author URI: https://leancon.ai
Description: A modern, responsive WordPress theme for construction planning and AI-driven solutions
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: leancon-ai
Tags: responsive, custom-menu, featured-images, modern, business
*/

/* ===========================
   CSS Reset & Base Styles
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background: #FFFEFA !important;
}
:root {
    --primary-color: #2D9B9B;
    --primary-dark: #102D30;
    --secondary-color: #9BFFC5;
    --text-dark: #1a1a1a;
	--text-light: #666666;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --border-color: #e0e0e0;
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}
body {
/*     font-family: var(--font-primary); */
	font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}
.error {
	color: red;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* ===========================
   Container & Layout
   =========================== */
.container {
    max-width: 1344px;
    margin: 0 auto;
    padding: 0 16px!important;
}

.wrapper {
    max-width: 100%;
    overflow-x: hidden;
}

/* ===========================
   Header Styles
   =========================== */
.site-header {
    background-color: rgba(255, 255, 255, 0.70);
    padding: 22px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(15px);
}
.site-header.scrolled {
    background-color: rgba(255, 255, 255, 0.25);
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1344px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-logo img {
    height: 44px;
    width: auto;
}

.site-logo .logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
}

.main-navigation ul {
    display: flex;
    gap: 4px;
    align-items: center;
	margin:0;
}

.main-navigation a {
    color: #102D30;
    font-weight: 500;
    font-size: 16px;
	line-height:24px;
    padding: 12px 20px;
    position: relative;
	border-radius:8px;
	text-decoration:none;
}

.main-navigation a:hover, .main-navigation .current_page_item a {
	background-color:rgba(255, 255, 255, 0.30);
    color: #102D30;
}

.main-navigation li:last-child a {
	background-color:#92D6B9;
}
.main-navigation a.btn-clients {
    background-color: var(--secondary-color);
    color: var(--text-dark);
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
}

.main-navigation a.btn-clients:hover {
    background-color: var(--primary-color);
    color: var(--white);
}
#page {
    overflow-x: hidden;
}
/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-dark);
}

/* ===========================
   Hero Section
   =========================== */
.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
	padding:100px 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    padding: 60px 0;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--green-medium, #1D7377);
    color: var(--white);
    padding: 16px 24px;
    font-weight: 600;
    font-size: 16px;
	line-height:24px;
	font-family: "Inter";
	font-style:normal;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
	border-radius: 16px;
    
}

.btn-primary:hover {
    background-color: var(--primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 155, 155, 0.3);
}

.btn-primary svg {
    width: 25px;
    height: 25px;
}

/* ===========================
   Content Sections
   =========================== */
.content-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 48px;
	width:100%;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}
.section-title h2{
	color:  #102D30;
	font-family: "Readex Pro", sans-serif;
	font-size: 40px;
	font-style: normal;
	font-weight: 600;
	line-height: 48px;
}
/* .section-title h2 .highlight {
    color: var(--primary-color);
} */
.section-title h2 span {
    color:#1D7377;
}
.section-title p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
	font-family: "Readex Pro";
}
.logic-sectors-section .section-title br {
	display:none;
}

/* ===========================
   About Page CSS
   =========================== */

.about-page .intro-section{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 48px;
	flex: 1 0 0;
	background: radial-gradient(50% 50% at 50% 50%, #92D6B9 0%, rgba(146, 214, 185, 0.00) 100%), #102D30;
	background-blend-mode: overlay, normal;
	padding: 120px 0 120px;
}

.about-page .intro-div h1{
	text-align: center;
    color: rgb(255, 255, 255);
    margin-bottom: 24px;
}

   .about-hero-wrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	flex: 1 0 0;
    padding: 150px 0 50px 0;
	background: radial-gradient(50% 50% at 50% 50%, #92D6B9 0%, rgba(146, 214, 185, 0.00) 100%), #102D30;
	background-blend-mode: overlay, normal;
        }
 .about-hero-col
 {
	 z-index:999;
	 position:relative;
 }
   .period{
	 color:#92D6B9;
   }
        .about-hero-wrapper h1 {
			
            font-size: 48px;
            font-weight: 600;
            letter-spacing: 1px;
			color:#fff;
			text-align:center;
			margin:0 auto;
			font-family:"Readex Pro";
			line-height: 56px;
			padding-bottom:20px;
        }
        
        .about-hero-wrapper p {
            max-width: 850px;
            margin: 10px auto;
            font-size: 16px;
			color:#fff;
			line-height: 24px;
            font-family: 'Inter';
            font-weight: 400;
	        margin: 10px auto;

        }
 
        /* Team Card Section */
		 .linkedin-icon {
                width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    cursor: pointer;
    padding: 12px;
        }

        .linkedin-icon img {
            width: 22px;
        }
        .about-team-card {
           
            padding: 35px;
            margin: 40px auto;
            position: relative;
			border-radius: 32px;
		    border: 1px solid rgba(146, 214, 185, 0.25);
		    background: rgba(146, 214, 185, 0.06);
			z-index:9;
        }
 
        /* Arrow BG */
        .bg-vector-1 {
            position: absolute;
			right: -260px;
			bottom: 12px;
			width: 732px!important;
			height: 360px;
			background-image: url('/wp-content/uploads/2025/11/Union1.svg');		
			background-repeat: no-repeat;
			background-size: contain; /* or cover */
			background-position: center;
			z-index:-9;
			filter: brightness(.4);
        }
		.bg-vector-2 {
            position: absolute;
			left: -260px;
			top: -222px;
			width: 732px!important;
			height: 360px;
		    background-image: url('/wp-content/uploads/2025/11/Union.svg');		
			background-repeat: no-repeat;
			background-size: contain; /* or cover */
			background-position: center;
			z-index:-9;
			filter: brightness(.4);
		}
		
        .about-member img {
            border-radius: 12px;
            width: 100%;
            object-fit: cover;
        }
 
        .about-member-name {
            font-family: "Readex Pro";
			font-size: 32px;
			font-style: normal;
			font-weight: 600;
			line-height: 40px; /* 125% */

            margin-bottom: 5px;
			color:#fff;
        }
 
        .about-member-role {
            font-size: 18px;
            opacity: 0.8;
            margin-bottom: 12px;
			color:#92D6B9;
        }
      
        .about-text-block p {
            font-size: 18px;
               line-height: 28px;
    color: rgba(255, 254, 250, 1);
    font-weight: 300;
	opacity: unset;
	text-align:justify-content;
        }
       
        .about-text-block{
			text-align:left;
		}
		
		 /* Heading Section */
        .advisors-section {
            padding: 100px 0;
            text-align: center;
        }

        .advisors-section h2 {
			  font-family: "Readex Pro";
            font-size: 40px;
			line-height:48px;
            font-weight: 600;
            margin-bottom: 18px;
            color: #102D30;
			margin:0 auto;
			padding-bottom:24px;
        }

        .advisors-section h2 span {
            color: #1D7377;
        }
        .advisors-section p:first-of-type {
          text-align:center !important;
        }
        .advisors-section p {
              max-width: 840px;
			margin: 0 auto;
			font-size: 16px;
			line-height: 1.65;
			color: #4a5853;
			text-align: center;
			color: rgba(16, 45, 48, 0.64) !important;
			margin-bottom: 0;
			text-align: left !important;
	
        }

        /* Advisor Cards */
        .advisor-card {
            background: #ffffff;
            border-radius: 16px;
            padding: 16px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.06);
            transition: transform .25s ease;
            height: 100%;
			border: 1px solid var(--Stroke, #E0E0DC);
        }

        .advisor-card:hover {
            transform: translateY(-4px);
        }

        .advisor-image {
            width: 100%;
            height: auto;
            object-fit: cover;
            border-radius: 14px;
            margin-bottom: 18px;
        }

        .advisor-name {
           color: #102D30;
			font-family: Inter;
			font-size: 18px;
			font-style: normal;
			font-weight: 600;
			line-height: 24px; 
			letter-spacing: 0.15px;
			    text-align: left;
        }

        .advisor-title {
           color: rgba(16, 45, 48, 0.64);
			font-family: Inter;
			font-size: 16px;
			font-style: normal;
			font-weight: 400;
			line-height: 24px;
        }


        /* LinkedIn icon */
        .advisor-icon {
            width: 48px;
            height: 48px;
			padding:12px;
            border-radius: 8px;
            background: #edf3ef;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
        }

        .advisor-icon img {
            width: 18px;
        }
		
		.investor-head{
			margin:0 auto;
		}
   /* Section Container */
        .investors-section {
            padding: 100px 0 120px 0;
            text-align: center;
        }

        .investors-section h2 {
           color:  #102D30;
			font-family: "Readex Pro";
			font-size: 40px;
			font-style: normal;
			font-weight: 600;
			line-height: 48px;
			
			margin:0 auto;
			padding-bottom:24px;
        }

        .investors-section h2 span {
            color: #1D7377;
        }

        .investors-section p {
            font-family: Inter;
            font-size: 16px;
            max-width: 760px;
            margin: 0 auto 50px auto;
            line-height: 24px;
            color: #4a5853;
        }

        /* Logo Card */
        .partner-card {
            background: #ffffff;
            border-radius: 18px;
            height: 130px;
            border: 1px solid #e8eee9;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 25px;
            transition: box-shadow .25s ease;
        }

        .partner-card:hover {
            box-shadow: 0 4px 12px rgba(0,0,0,0.07);
        }

        .partner-card img {
            max-height: 60px;
            max-width: 80%;
            object-fit: contain;
           /* filter: brightness(0) saturate(100%);  keeps logos crisp */
        }

        @media (max-width: 576px) {
            .partner-card {
                height: 115px;
                padding: 20px;
            }
        }
        /* Tighten spacing on small screens */
        @media (max-width: 576px) {
            .advisor-card {
                padding: 18px;
            }
            .advisor-image {
                height: auto;
            }
			
			.number-box {
             /*width: 50px!important;*/
        }
		
		.line-between::before {
		
		background-image: url("/wp-content/uploads/2025/11/Frame-m1.png")!important; /* replace with your line-image */
		background-size: auto;
	}
	.line-between1::before {
		background-image: url("/wp-content/uploads/2025/11/Frame-m2.png")!important; /* replace with your line-image */
		background-size: auto;
	}
		
		}
        @media(max-width: 768px) {
			.results-grid-col {
    display: flex;
    flex-direction: column;
}			
			.box-top{
				order:1;
			}
			.box-middle{
				order:2;
			}
			.box-bottom{
				order:3;
			}
            .about-team-card {
                padding: 16px 12px 24px 12px;
				border-radius:16px;
				border: 1px solid rgba(146, 214, 185, 0.5);
            }
			.about-member{
				    padding: 0 4px;
			}
			.about-hero-wrapper  .container, .advisors-section .container ,.investors-section .container{
			        padding: 0 16px;
			}
			.about-team-card .about-member:first-child{
				border-bottom: 1px solid rgba(146, 214, 185, 0.5);
			}
            .about-arrow-bg {
                width: 260px;
                right: -20px;
                bottom: -20px;
            }
			.about-text-block{
				padding: 30px 0;
			}
			
			.advisors-section ,.investors-section{
				padding:48px 0;
			}
			.faq-text{
				width: 200px!important;
			}
			.number-box{
			border-radius: 50px!important;
			 width: 36px!important;
			}
			.arrow-icon{
				background: transparent!important;
				
			}
			.arrow-icon svg path {
               stroke: #ffffff !important;
            }
            }
		
		.stat-item:last-child .stat-value:before {
    content: '0:0';
}
/* ===========================
   Product page CSS
   =========================== 	
   
	 /* -------------------------------------
	   SECTION LABEL (Our Product)
	--------------------------------------*/
	.section-label {
		    display: inline-block;
    padding: 8px 20px;
    background: rgba(146, 214, 185, 0.25);
    color: #1D7377;
    font-size: 16px;
    line-height: 24px;
    border-radius: 88px;
    font-weight: 400;
    margin-bottom: 24px;
    font-family: 'Inter';
	}



	/* -------------------------------------
	   HERO TITLE
	--------------------------------------*/
	.hero-title {
		font-family: "Readex Pro";
		font-size: 48px;
		font-style: normal;
		font-weight: 600;
		line-height: 56px; /* 116.667% */
		text-transform: uppercase;
		 margin-bottom: 32px;
	}

	.hero-title .highlight {
		color:#1D7377;
	}



	/* -------------------------------------
	   HERO DESCRIPTION
	--------------------------------------*/
	.hero-desc {
		color: rgba(16, 45, 48, 0.64);
		font-family: Inter;
		font-size: 16px;
		font-style: normal;
		font-weight: 400;
		line-height: 24px; 
		 margin-bottom: 48px;
	}

     .hero-btn-m {
		 display:none;
	 }

	/* -------------------------------------
	   CTA BUTTON
	--------------------------------------*/
	.btn-demo {
	
		text-decoration: none;
		
	}

	.btn-demo:hover {
		background: #102D30;
		color: #fff;
		box-shadow: 0 12px 26px rgba(29, 115, 119, 0.3);
	}



	/* -------------------------------------
	   HERO IMAGE
	--------------------------------------*/
	.hero-img {
		width: 100%;
		max-width: 520px;
		border-radius: 16px;
		box-shadow: 0 16px 40px rgba(0,0,0,0.08);
	}



	/* -------------------------------------
	   STEP BADGE
	--------------------------------------*/
	.step-badge {
		display: inline-block;
		padding: 8px 18px;
		background: rgba(146, 214, 185, 0.25);
		color: rgba(29, 115, 119, 1);
		border-radius: 30px;
		font-size: 15px;
		font-weight: 400;
		margin-bottom: 24px;
		font-family:inter;
	}

.step-section .container {
    max-width: 1118px;
}

	/* -------------------------------------
	   STEP TITLE
	--------------------------------------*/


    

	.step-title {
		font-family: "Readex Pro";
		font-size: 32px;
		font-style: normal;
		font-weight: 600;
		line-height: 40px; /* 125% */
		
		color: #102D30;
		padding-bottom:24px!important;
	}

	.line-between {
		position: relative;
		width: 100%;
		height: 80px; /* adjust height for spacing */
	}

	.line-between::before {
		content: "";
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		background-image: url("/wp-content/uploads/2025/11/Frame-ii.png"); /* replace with your line-image */
		background-repeat: no-repeat;
		background-position: center;
		background-size: auto;
	}
   .line-between1{
		position: relative;
		width: 100%;
		height: 80px; /* adjust height for spacing */
	}

	.line-between1::before {
		content: "";
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		background-image: url("/wp-content/uploads/2025/11/Frame-i.png"); /* replace with your line-image */
		background-repeat: no-repeat;
		background-position: center;
		background-size:  auto;
	}
	/* -------------------------------------
	   STEP DESCRIPTION
	--------------------------------------*/
	.step-desc {
		color:  #102D30;
		text-overflow: ellipsis;
		/* Base/Body */
		font-family: Inter;
		font-size: 16px;
		font-style: normal;
		font-weight: 400;
		line-height: 24px; /* 150% */
	}



	/* -------------------------------------
	   STEP IMAGE
	--------------------------------------*/
	.step-img {
		width: 100%;
		max-width: 520px;
		border-radius: 16px;
		box-shadow: 0 16px 40px rgba(0,0,0,0.07);
	}
	   
	  .outlined-img {
    border: 3px solid #C99AFC;     /* matches purple outline */
    border-radius: 14px;
}

	/* OPTIONAL LIGHT BACKGROUND LINES (screenshot wires) */
	.step-section::before {
		content: "";
		position: absolute;
		width: 75%;
		height: 2px;
		background: rgba(0,0,0,0.06);
		left: 12%;
		top: -10px;
	}

	.step-section::after {
		content: "";
		position: absolute;
		width: 2px;
		height: 40px;
		background: rgba(0,0,0,0.06);
		left: 14%;
		top: 0;
	}
	   .video-box video {
      width: 100%;
      height: 420px;
      border-radius: 22px;
      object-fit: cover;
    }

/* TITLE */

.faq-subtitle {
	 color: rgba(16, 45, 48, 0.64)!important;
	text-align: center;
	font-family: Inter!important;
	font-size: 16px!important;
	font-style: normal;
	font-weight: 400;
	line-height: 24px; 
}


/* FAQ SECTION */

.faq-section {
    padding: 80px 0;
}
.accordion{
	width:100%;
}
#faqAccordion{
	
	border-radius: 24px;
    display: flex;
    padding: 16px 16px 24px 16px;
    flex-direction: column;
    align-self: stretch;
	    align-self: center;
    max-width: 892px;
   /* border: #FFFEFA;
    background: #1D7377;*/
}

.accordion-item:first-of-type{
	border-top-left-radius:24px!important;
	border-top-right-radius:24px!important;
	}
	
	.accordion-item:last-of-type{
	border-bottom-left-radius:24px!important;
	border-bottom-right-radius:24px!important;
	}
.faq-item {
    background: #1D7377;
    border-radius: 0px;
    margin-bottom: 0;
    border-bottom: 1px solid #FFFEFA;
    overflow: hidden;
}

.faq-btn {
        background-color: #1D7377 !important;
    color: #fff !important;
    gap: 14px;
    padding: 18px;
    font-size: 17px;
    border-radius: 10px;
    box-shadow: none !important;
}


.faq-btn:not(.collapsed) {
    box-shadow: none;
}
.accordion-button::after{
	content:unset!important;
}
.faq-text {
    flex-grow: 1;
    overflow: hidden;
    color: var(--Background, #FFFEFA);
    text-overflow: ellipsis;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}
.faq-btn.collapsed::after {
    transform: rotate(-90deg);
}

/* Number circle */
.number-box {
    width: 40px;
    height: 36px;
    background:#FFFEFA;
    color: #1D7377;
    font-weight: 700;
    border-radius: 8px;
	padding:6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Accordion body */
.faq-body {
    background: #1d7377;
    padding: 0px 20px 25px 68px!important;
	    color: rgba(255, 255, 255, 0.80);
	text-overflow: ellipsis;
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 300;
	line-height: 24px; /* 150% */
	}

/* Arrow Icon */
.arrow-icon {
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
	padding: 8px;
    background: #fff;
    border-radius: 8px;
}

/* Rotate arrow when CLOSED */
.faq-btn.collapsed .arrow-icon {
    transform: rotate(-90deg);
}

/* Rotate arrow DOWN when OPEN */
/* .faq-btn:not(.collapsed) .arrow-icon {
    transform: rotate(0deg);
} */

/* CTA SECTION */
.cta-section {
    background: linear-gradient(140deg, #1D7377, #0D4648);
    color: white;
}

.cta-title {
    font-size: 32px;
    font-weight: 700;
}

.cta-subtitle {
    font-size: 15px;
    opacity: 0.85;
}

/* CTA BUTTON */
.cta-btn {
    background: white;
    color: var(--teal);
    font-weight: 600;
    border-radius: 8px;
    transition: 0.2s;
}
.cta-btn:hover {
    background: #ECFFFD;
}

.page-id-160 .questions-cta-section {
	display:none;
}
/* Contact Section */



.contact-section {
    min-height: 100vh;
    padding: 120px 0 60px;
	background: #102D30;
	background: radial-gradient(50% 50% at 50% 50%, #92D6B9 0%, rgba(146, 214, 185, 0.00) 100%), #102D30;
	background-blend-mode: overlay, normal;
	position:relative;
}
.contact-section:before {
	position:absolute;
	left:0;
	right:0;
	top:0;
	bottom:0;
	background:url('https://wordpress-1388740-5985307.cloudwaysapps.com/wp-content/uploads/2025/11/cont-bg1.png') no-repeat left top;
	content:"";
	z-index: 0;
}
.contact-section:after {
	position:absolute;
	left:0;
	right:0;
	top:0;
	bottom:0;
	background:url('https://wordpress-1388740-5985307.cloudwaysapps.com/wp-content/uploads/2025/11/cont-bg2.png') no-repeat right bottom;
	content:"";
	z-index: 0;
}
.contact-section .container {
    z-index: 1;
}
/* Main Card */
.contact-card {
    max-width: 700px;
	background:rgba(146, 214, 185, 0.06);
    border: 1px solid rgba(146, 214, 185, 0.25);
    border-radius: 24px;
/*     backdrop-filter: blur(12px); */
	padding:24px;
}

.contact-card h1{
	font-family: "Readex Pro";
		font-size: 40px;
		font-style: normal;
		font-weight: 600;
		line-height: 48px; /* 125% */
		
		color: #ffffff;
		padding-bottom:10px!important;
}
.contact-card p{
	font-family: "inter";
		font-size: 16px;
		font-style: normal;
		font-weight: 300;
		line-height: 24px;
		color: #FFFEFA!important;
}

.contact-card  .form-control{
	background-color: rgba(255, 255, 255, 0.08);
	padding: 10px;
    color: #fff;
	border: unset;
	outline:none;
}
.contact-card  .form-control:focus{
	background-color: rgba(255, 255, 255, 0.08);
/* 	    height: 40px; */
    color: #fff;
	outline:none;
	border:0;
	box-shadow:none;
}
.contact-card .form-control {
	border-radius:10px;
}

.contact-card .form-label {
	font-size:12px;
}
.form-control::placeholder {
  color: #FFFEFA!important;
  font-family: "inter";
		font-size: 14px;
		font-style: normal;
		font-weight: 400;
		line-height: 24px;
}
.fw-bold {
	color:rgba(146, 214, 185, 1);
}

/* Form fields */
.form-field {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    padding: 10px 14px;
    border-radius: 10px;
}

.form-field::placeholder {
    color: rgba(255, 255, 255, 0.6);
	
}

/* Button */
.send-btn {
    background-color: #36b6b0;
    border-radius: 12px;
    color: #fff;
    transition: 0.25s;
}

.send-btn:hover {
    background-color: #2fa39d;
}

/* Bottom info box */
.info-box {
    max-width: 700px;
/*     background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15); */
	background:rgba(146, 214, 185, 0.06);
    border: 1px solid rgba(146, 214, 185, 0.25);
    border-radius: 16px;
/*     backdrop-filter: blur(10px); */
	width:100%;
}
.info-box .col-md-12, .info-box .col-md-6 {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    justify-content: flex-start;
}
.info-box .icon {
    font-size:unset;
	width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon {
    font-size: 22px;
}

/* ------------------------------ */
/*    576px    */
/* ------------------------------ */
@media (min-width: 320px) and (max-width: 575.98px) {
    .contact-card {
        padding: 20px !important;
    }
    .info-box {
        padding: 20px !important;
    }
    .form-field {
        font-size: 14px;
    }
}

/* ===========================
   Footer
   =========================== */
.site-footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-content {
    text-align: center;
}

.footer-content p {
    margin-bottom: 10px;
    opacity: 0.8;
}
section.how-it-works-section.desktop {
    display: block;
}
.custom-section.mobile {
    display: none;
}

.timeline-animation { width: 100%; max-width: 100%; }

.desktop-only { display: block; }
.mobile-only { display: none; }



/* ===========================
   Responsive Design
   =========================== */

@media only screen and (min-width:769px) and (max-width:844px){
.header-container {
  justify-content: flex-start;
  gap: 20px;
}
}
@media (min-width: 1200px) {
 .gap-r{
		   padding-right:10rem!important;
	   }
	   .gap-l{
		    padding-left:10rem!important;
	   }
}
/* Tablet */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
.swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
    display: none;
}
	
    .main-navigation {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--white);
        transition: left 0.3s ease;
        padding: 30px;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }
	.main-navigation {
		align-items: flex-start;
	}
    .main-navigation.active {
        left: 0;
    }
	.main-navigation {
		box-shadow:none;
		border-top:1px solid #E0E0DC;
	}
    .main-navigation ul {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
	.main-navigation a {
		color: rgb(16 45 48 / 50%);
		font-weight: 400;
		font-size: 16px;
		line-height: 24px;
		padding: 5px 0px 5px 0;
		position: relative;
		border-radius:0px;
	}
	.main-navigation li:last-child a {
		background-color:transparent;
		color:#1D7377;
	}
	.main-navigation .current_page_item a {
		text-decoration: underline;
	}
    .hero-content h1 {
        font-size: 36px;
    }
	.hero-title{
	    font-size: 32px;
        line-height: 40px;
	}
    .hero-content p {
        font-size: 16px;
    }
    .step-title{
		  font-size: 24px;
        line-height: 32px;
	}
    .section-title h2 {
        font-size: 28px;
		line-height:36px;
    }
.menu-open .site-header {
	background:#fff;
	backdrop-filter: blur(0px);
    box-shadow: none;
}
.questions-cta-content .section-title {
	margin-top: 0px;
}
.logic-sectors-section .section-title {
	padding-left:16px;
	padding-right:16px;
}
.logic-sectors-section .section-title br {
	display:block;
}
.section-title {
    margin-bottom: 32px;
	margin-top: 48px;
}
	.hero-section{
		padding:50px 0;
	}
 .bg-vector-1 , .bg-vector-2{
	 display:none;
 }

 .about-hero-wrapper h1{
	   font-size: 32px;
       line-height: 40px;
   }
  .about-member-name{
	  font-size: 24px;
       line-height: 32px
  }
.about-text-block p{
	 font-size: 16px;
	 line-height: 24px; 
}
.advisors-section h2 {
	 font-size:24px;
	 line-height:32px;
	 font-weight: 600;
}
.investors-section h2{
	font-size:24px;
	line-height:32px;
	text-align:center;
}
.desktop-only {
	display: none !important;
}
.mobile-only { 
	display: block;
}
.contact-section:before {
	display:none;
}
.contact-section:after {
	display:none;
}
.faq-section {
    padding: 0 0 48px;
}
}

/* Mobile */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }
  
    .hero-content p {
        font-size: 14px;
    }

    .btn-primary {
        padding: 16px 24px;
        font-size: 16px;
    }

    .section-title h2 {
        font-size: 24px;
		line-height:32px;
    }

    .content-section {
        padding: 50px 0;
    }
	/* Home page mobile slider  */
	.client-success-section.mobile .container {
    padding: 0 !important;
}
.client-success-swiper {
    width: 100%;
  padding: 0 10px; /* small side padding */

}
.client-slide {
    width: 88% !important;
	
}

.swiper-slide {
/*     display: flex;
    justify-content: center; */
/* 	width: 96% !important;
    margin: 0 !important; */
}
.swiper-pagination-bullet {
    background: #ccc !important;
}
.swiper-pagination-bullet-active {
    background: #0C5643 !important; /* your green */
}
	 .success-card {
       border-radius: 16px;
	    border: 1px solid var(--Stroke, #E0E0DC);
        padding: 16px;
        background: #fff;            /* optional if you want white card */
        box-sizing: border-box;
/* 		 margin-top: 6%; */
		 margin: 0 auto;
    }
	.success-content {
		padding: 5px 0px 25px 0px !important;
	}
	.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: -20px !important;
		top: auto !important;
	}
	.swiper {
    overflow: visible !important;
    list-style: none !important;
    padding-bottom: 20px !important;
}
/* 	How we work mobile */
section.how-it-works-section.desktop {
    display: none !important;
}
.custom-section.mobile {
    display: block!important;
}

.custom-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
        padding: 0px 0px 60px;
}

.custom-step {
  display: flex;
  flex-direction: column;
  align-items: center;
	padding-bottom: 40px;
	margin:0 auto;
}

.custom-step-header {
 border-radius: 88px;
 background: var(--green-medium, #1D7377);
 color: #fff;
 font-family: Inter;
font-size: 16px;
font-style: normal;
font-weight: 600;
line-height: 24px;
  padding: 9px 31px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.custom-step-desc {
	    text-align: left;
        max-width: 325px;
	    color: var(--green-medium, #1D7377);
        border: 1px solid #e6e8ea;
        font-family: Inter;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px;
        display: flex;
        padding: 12px 16px;
        justify-content: center;
        border-radius: 12px;
        border: 1px solid var(--green-medium, #1D7377);
        background: #fff;
	margin-top: 12px;
}
	.custom-section .section-cta {
    text-align: center;
    width: 100%;
    margin-top: 20px;
}
	.custom-section .section-cta .btn-primary {
    background: #fff;
    border: 1px solid #1D7377;
    color: #1D7377;
}
		    .tooltiphome {
        width: 8px;
        height: 4px;
        transform: rotate(0deg);
        top: 0px;
        margin-top: -14px;
	}
	
}

@media only screen and (min-width:1200px) and (max-width:1399px){
	.bg-vector-1{
		right: -312px;
		bottom: 90px;
	}
	
}

@media only screen and (min-width:1024px) and (max-width:1200px){
	.bg-vector-1{
		right: -287px;
        bottom: 95px;
		width: 635px !important;
        height: 260px;
	}
	.bg-vector-2{
		left: -251px;
        top: -104px;
		width: 635px !important;
        height: 260px;
	}

}

@media (max-width: 1024px) {
	
	.bg-vector-1, .bg-vector-2{
	   Display:none;
}
}
@media (max-width: 992px){


    /* Order elements inside left column */
 
 .hero-video{
	 text-align:center;
	         margin: 0 !important;
 }
 
 .video-box video {
	 height:auto!important;
 }
    .hero-btn-m {
        display:inline-flex; /* button last */
        margin-top: 32px;
    }
/* 	.faq-section {
    padding: 80px 0 30px 0!important;
} */

   .hero-btn-d {
        display:none;
    }
	
	.btn-primary {
        padding: 16px 24px!important;
        font-size: 16px!important;
    }
	
	.hero-desc{
		margin-bottom:32px;
	}
	
	.faq-gap{
		padding:0 16px;
	}
	
	 .mob-br{
		border:1px solid rgba(224, 224, 220, 1);
		border-radius:16px;
		Padding:16px;
        Gap:24px;
	}
	.info-box .icon-text {
		text-align: left;
	}
	
}

.timeline-block {
    padding: 15px !important;
  
}

