/**
* Theme Name: Blocksy Child
* Description: Blocksy Child theme
* Author: Creative Themes
* Template: blocksy
* Text Domain: blocksy
*/
:root {
	--primary-color: var(--theme-palette-color-1, #2872fa);
	--primary-dark: var(--theme-palette-color-2, #1559ed);
	--secondary-color: #f5f6fa;
	--accent-color: #5cb6e7;
	--accent-dark: #4ecacc;
	--text-color: #2d3748;
	--light-text: #718096;
	--bg-color: #ffffff;
	--dark-bg: #1a202c;
	--shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	--border-radius: 8px;
	--transition: all 0.3s ease;
}
/* Animation classes */
.animate-on-scroll {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
	opacity: 1;
	transform: translateY(0);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
.container{
	z-index: 2;
    position: relative;
}
body {
	font-family: 'Inter', sans-serif;
	color: var(--text-color);
	line-height: 1.6;
	overflow-x: hidden;
}

a {
	color: var(--primary-color);
	text-decoration: none;
	transition: var(--transition);
}

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

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.cta-button {
	background-color: var(--primary-color);
	color: white;
	padding: 10px 20px;
	border-radius: var(--border-radius);
	font-weight: 500;
	transition: var(--transition);
}

.cta-button:hover {
	background-color: var(--primary-dark);
	color: white;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    //overflow: hidden;
    position: relative; /* Important for proper overflow control */
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    flex: 1;
    max-width: 600px;
    z-index: 2; /* Keep text above any moving elements */
}

.hero-image {
    flex: 1;
	z-index:1;
    text-align: center;
    background-color: transparent !important;
    transition: transform 0.1s ease-out;
    transform: translate(40px, -30px);
}

.hero-visual {
    max-width: 100%;
    border-radius: 8px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    background: none !important;
}
#canvas-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero-title {
	font-size: 48px;
	font-weight: 700;
	margin-bottom: 20px;
	line-height: 1.2;
}

.hero-subtitle {
	font-size: 20px;
	color: var(--light-text);
	margin-bottom: 30px;
}

.hero-buttons {
	display: flex;
	gap: 15px;
}

.secondary-button {
	background-color: var(--bg-color);
	color: var(--text-color);
	padding: 10px 20px;
	border-radius: var(--border-radius);
	font-weight: 500;
	transition: var(--transition);
}

.secondary-button:hover {
	background-color: var(--secondary-color);
}

/* Introduction Section */
.intro {
	width: 100% !important;
    max-width: 100% !important;
    padding: 80px 0;
    color: white; /* Text color for dark background */
}

.intro-grid {
	z-index: 2;
    position: relative;
    display: flex;
    align-items: center;
    gap: 40px;
}

.intro-content {
    flex: 1;
}

.intro-content h2 {
    margin-bottom: 20px;
    font-size: 2.5rem;
	color:white;
}

.intro-content p {
    margin-bottom: 16px;
    line-height: 1.6;
}

.intro-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
}

.intro-image {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

/* Features Section */
.section {
	padding: 100px 0;
}

.section.light {
	background-color: var(--bg-color);
}

.section.dark {
	background-color: var(--secondary-color);
}

.section-header {
	text-align: center;
	margin-bottom: 60px;
}

.section-title {
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 15px;
}

.section-subtitle {
	font-size: 18px;
	color: var(--light-text);
	max-width: 700px;
	margin: 0 auto;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 30px;
}

.feature-card {
	background-color: var(--bg-color);
	border-radius: var(--border-radius);
	box-shadow: var(--shadow);
	padding: 30px;
	transition: var(--transition);
}

.feature-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
	width: 60px;
	height: 60px;
	background-color: rgba(74, 108, 247, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.feature-icon svg {
	width: 30px;
	height: 30px;
	fill: var(--primary-color);
}

.feature-title {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 10px;
}

.feature-description {
	color: var(--light-text);
}
#how-it-works {
    padding: 80px 0;
    background-color: var(--dark-bg);
    margin: 0 !important;
    max-width: 100%;
    width: 100%;
}

#how-it-works p,#how-it-works h2,#how-it-works h3{
	color:white;	
}

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

.mt-5 {
    margin-top: 3rem;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-md-4 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}
.steps {
    display: flex;
    flex-direction: row;
    gap: 40px;
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.step {
    display: flex;
    gap: 25px;
    position: relative;
    transition: transform 0.3s ease;
    padding: 30px;
    border-radius: 12px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
}

.step-content {
    flex-grow: 1;
    position: relative;
}

.step-title {
    margin-bottom: 12px;
    font-size: 22px;
    color: var(--primary-color);
}

.step-description {
    color: #555;
    line-height: 1.6;
}
.steps-row{
  display:flex;
  flex-direction:row;
}
/* Simple checkmark styling */
.step-check {
    display: none;
    color: #4CAF50;
    font-weight: bold;
    font-size: 18px;
    margin-left: 10px;
}

.step.checked .step-check {
    display: inline-block;
}
.step-description {
	color: var(--light-text);
}
/* Scrollable steps section */
.scrollable-steps {
    padding: 60px 0;
    background-color: #f8f9fa;
    min-height: 100vh; /* Ensure enough scroll space */
    position: relative;
}

.steps-container {
    position: relative;
    height: 400px; /* Fixed height container */
    margin-top: 50px;
}

.step-indicators {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

.steps-viewport {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.step {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    visibility: hidden;
}

.step.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.step-content {
    text-align: center;
    max-width: 600px;
}

.step-title {
    font-size: 28px;
    margin-bottom: 15px;
}

.step-description {
    font-size: 18px;
    line-height: 1.6;
}/* Pricing Grid Layout */
.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.pricing-card {
    flex: 1 1 calc(25% - 20px);
    min-width: 240px;
    max-width: calc(25% - 20px);
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.pricing-card.popular {
    border: 2px solid var(--primary-color, #4a6cf7);
    position: relative;
    z-index: 1;
    transform: scale(1.03);
}

.pricing-card.popular:hover {
    transform: scale(1.03) translateY(-5px);
}

.pricing-name {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
	text-align:center;
}

.pricing-description {
    color: #666;
    margin-bottom: 20px;
	text-align:center;
}

.pricing-amount {
    font-size: 32px;
    font-weight: bold;
    color: var(--primary-color, #4a6cf7);
    margin-bottom: 5px;
	text-align:center;
}

.pricing-period {
    color: #666;
    margin-bottom: 25px;
	text-align:center;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    flex-grow: 1;
}

.pricing-feature {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.pricing-feature:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.pricing-feature.disabled {
    color: #999;
    text-decoration: line-through;
}

.pricing-feature.disabled:before {
    content: "✕";
    color: #F44336;
}

.pricing-action {
    margin-top: auto;
}

.pricing-button {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: var(--primary-color, #4a6cf7);
    color: white;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.pricing-button:hover {
    background-color: var(--primary-color-dark, #3a5ce7);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .pricing-card {
        flex: 1 1 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
}

@media (max-width: 767px) {
    .pricing-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
    
    .pricing-card.popular {
        transform: scale(1);
        margin: 20px 0;
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-5px);
    }
}

/* Benefits Section */
.benefits {
	background-color: var(--secondary-color);
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.benefit-card {
	background-color: var(--bg-color);
	border-radius: var(--border-radius);
	box-shadow: var(--shadow);
	padding: 30px;
	transition: var(--transition);
}

.benefit-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
	width: 50px;
	height: 50px;
	background-color: rgba(108, 92, 231, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.benefit-icon svg {
	width: 24px;
	height: 24px;
	fill: var(--accent-color);
}

.benefit-title {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 10px;
}

.benefit-description {
	color: var(--light-text);
}

/* CTA Section */
.cta {
	background-color: var(--dark-bg);
	color: white;
	text-align: center;
}

.cta-title {
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 20px;
	text-align:center;
	color:whtie !important;
}

.cta-description {
	color: #a0aec0;
	margin-bottom: 30px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.cta-buttons {
	display: flex;
	justify-content: center;
	gap: 15px;
}

/* Technology Section */
.technology {
	background-color: var(--bg-color);
	padding: 70px 0;
}

.tech-container {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 50px;
	flex-wrap: wrap;
}

.tech-icon {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.tech-icon img {
	height: 60px;
	margin-bottom: 10px;
}

.tech-icon span {
	color: var(--light-text);
	font-size: 14px;
}

/* Footer */
footer {
	background-color: var(--dark-bg);
	color: white;
	padding: 50px 0;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 30px;
}

.footer-logo {
	font-size: 24px;
	font-weight: 700;
	color: white;
	margin-bottom: 15px;
}

.footer-logo span {
	color: var(--accent-color);
}

.footer-description {
	color: #a0aec0;
	margin-bottom: 20px;
}

.footer-column-title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 20px;
}

.footer-links {
	list-style: none;
}

.footer-link {
	margin-bottom: 10px;
}

.footer-link a {
	color: #a0aec0;
	transition: var(--transition);
}

.footer-link a:hover {
	color: white;
}

.copyright {
	margin-top: 50px;
	text-align: center;
	color: #a0aec0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 20px;
}

/* Responsive */
@media screen and (max-width: 768px) {
	.hero {
		height: 600px;
	}
	.hero-content {
		flex-direction: column;
	}

	.hero-text, .hero-image {
		max-width: 100%;
	}
	.hero-title {
		font-size: 36px;
	}

	.hero-subtitle {
		font-size: 18px;
	}

	.section {
		padding: 60px 0;
	}

	.section-title {
		font-size: 30px;
	}

	.step {
		flex-direction: column;
	}

	.intro-grid {
		grid-template-columns: 1fr;
	}

    .col-md-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

.step-item {
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 8px;
    padding: 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.step-circle {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color, #4a6cf7); 
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

.step-card h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

.step-card p {
    color: #666;
    line-height: 1.6;
}

.step-checkmark {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    background-color: #4CAF50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: all 0.5s ease;
}

.step-item.checked .step-checkmark {
    opacity: 1;
    transform: scale(1);
}
.step-item {
    position: relative;
}

.step-item::after {
    content: '›››';
    position: absolute;
    right: 10px;
    top: -12%;
    transform: translate(0, -100%);
    font-size: 100px;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.step-item.arrow-animate::after {
    opacity: 1;
    animation: moveRightArrow 3s infinite;
}

@keyframes moveRightArrow {
    0% {
        transform: translateX(0%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Hide arrow on the last item */
.step-item:last-child::after {
    display: none;
}
@media screen and (max-width: 480px) {
	.hero-buttons {
		flex-direction: column;
	}

	.cta-buttons {
		flex-direction: column;
	}
}