/* General Styles */
body {
	font-family: 'Poppins', sans-serif;
	margin: 0;
	padding: 0;
	color: #333333;
	background-color: #f4f4f4;
}

h1, h2, h3 
{
	font-family: 'Montserrat', sans-serif;
	color: #1A2A4F;
}

a {
	text-decoration: none;
	color: #FF6B35;
}

/* Header */
header 
{
	background: #f5f5f5;
	color: white;
	padding: 20px 0;
	text-align: center;
	display: flex;
	flex-direction: column; /* Stack items vertically */      
	
}

header h1 {
	font-size: 3rem;
	margin: 0;
}


h1 
{
	font-size: 3rem !important;
	margin: 0;
}

h2 
{
	font-size: 2.5rem !important;
	margin: 0;
}

h3 
{
	font-size: 1.9rem !important;
	margin: 0;
}



header p {
	font-size: 1.2rem;
	margin: 0;
}

/* Hero Section */
.hero 
{
	padding-top: 2rem;  /* Reduce top padding */
    padding-bottom: 2rem; /* Keep some bottom space */	
	
	background: #fff;
	min-height: 80vh; /* Ensures enough height but not too much */
    display: flex;
    align-items: center; /* Keeps text and animation aligned */
    justify-content: center;
    text-align: center;
    flex-direction: column;
}



/* Left Side - Text */
.text-container 
{
	width: 45%;
}

/* Right Side - Animation */
.lottie-container {
	width: 45%;
	display: flex;
	justify-content: center;
	align-items: center;
	max-height: 250px;
}




/* Make it responsive */
@media (max-width: 768px) 
{
	.hero 
	{
		padding-top: 1rem; /* Reduce even further for mobile */
        padding-bottom: 1rem; /* Balance spacing */
        min-height: 85vh; /* Ensure visibility */
        
		flex-direction: column; /* Stack items on small screens */
		text-align: center;
	}

	.text-container, .lottie-container 
	{
		width: 80%; /* Adjust width for small screens */
		max-height: 200px;
	}
	
	.hero h2 {
        font-size: 1.8rem; /* Reduce heading size for mobile */
    }

    .hero p {
        font-size: 1rem; /* Adjust text */
    }
    
	.cta-button {
        font-size: 1rem;
        padding: 12px 20px;
        margin-top: 1rem; /* Push button closer to text */
    }    
    
}

/* Adjust for small screens */
@media (max-width: 576px) {
    .lottie-container {
        max-height: 180px; /* Reduce animation size on mobile */
        margin-bottom: 3rem; /* More space to avoid text overlap */
    }

    .hero h2 {
        font-size: 1.8rem; /* Slightly smaller heading on mobile */
    }

    .hero p {
        font-size: 1rem; /* Adjust text for readability */
    }
}

.hero h2 {
	font-size: 2.5rem;
	z-index: 1;
	color: #333;
/*       text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); */
}

.hero p {
	font-size: 1.5rem;
	z-index: 1;
	color: #333;
/*       text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); */
}

.cta-button {
	background: #ec008e;
	color: #fff;
/*       padding: 15px 30px; */
	border-radius: 5px;
	font-size: 1.2rem;
	margin-top: 20px;
	display: inline-block;
	transition: background 0.3s ease;
	z-index: 1;
}    

.hero .cta-button {
	background: #ec008e;
	color: #fff;
	padding: 15px 30px;
	border-radius: 5px;
	font-size: 1.2rem;
	margin-top: 20px;
	display: inline-block;
	transition: background 0.3s ease;
	z-index: 1;
}

.hero .cta-button:hover {
	background: #333;
}



/* Mockup Section */
.mockups 
{
	padding: 50px 20px;
	text-align: center;
	background: white;
}

.mockups h1 {
	font-size: 3rem !important;
	margin-bottom: 20px;
	color: #1A2A4F;
}


.mockups h2 {
	font-size: 2.3rem !important;
	margin-bottom: 20px;
	color: #1A2A4F;
}

.mockups h3 {
	font-size: 1.8rem !important;
	margin-bottom: 20px;
	color: #1A2A4F;
}

.mockup-item img {
	width: 100%;
	border-radius: 10px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.mockup-item p {
	font-size: 1.1rem;
	margin-top: 10px;
	color: #333333;
}


/* Ensure the mockup grid is flexible */
.mockup-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}

/* Each mockup item should take full width on small screens */
.mockup-item {
	width: 30%; /* Default for larger screens */
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

/* Lottie Animation Container - Centered */
.lottie-container-store {
	width: 60%;
	max-height: 200pt;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* Logo Styling - Default */
header h1 img {
	width: auto;
	max-width: 450pt; /* Default size */
}

/* Responsive Styles */
@media (max-width: 992px) { /* Tablet Size */
	.mockup-item {
		width: 48%; /* Two columns */
	}
}

@media (max-width: 768px) { /* Mobile */
	.mockup-item {
		width: 100%; /* Stack vertically */
	}

	/* Adjust logo for smaller screens */
	header h1 img {
		max-width: 90%; /* Scales down */
	}
}
/* Features Section */
.features {
	padding: 50px 20px;
	background: #f4f4f4;
	text-align: center;
}

.features h2 {
	font-size: 2.5rem;
	margin-bottom: 20px;
	color: #1A2A4F;
}

.features-grid {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
}

.feature-item {
	width: 22%;
	background: white;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	margin: 10px 0;
}

.feature-item h3 {
	font-size: 1.5rem;
	margin-bottom: 10px;
	color: #1A2A4F;
}

.feature-item p {
	font-size: 1rem;
	color: #333333;
}

/* Contact Section */
.contact {
	padding: 50px 20px;
	text-align: center;
	background: #f5f5f5;
	color: white;
}

.contact h2 {
	font-size: 2.5rem;
	margin-bottom: 20px;
}

.contact .cta-button {
	background: #ec008e;
	color: #fff;
	border-radius: 5px;
	font-size: 1.2rem;
	margin-top: 20px;
	display: inline-block;
	transition: background 0.3s ease;
	z-index: 1;
}

.contact .cta-button:hover {
	background: #333;
}

/* Footer */
footer 
{
	background: #333333;
	color: white;
	text-align: center;
	padding: 20px 0;
}




footer p {
	margin: 0;
}

/* Contact Form Styling */
.contact-form {
	padding: 50px;
	background: #f5f5f5;
	text-align: center;
}

.contact-form h2 {
	font-size: 24px;
	margin-bottom: 15px;
}

.contact-form form {
	max-width: 400px;
	margin: auto;
	display: flex;
	flex-direction: column;
}

/* Style input fields */
.contact-form input {
	padding: 15px; /* Increased size */
	margin: 8px 0;
	width: 100%;
	border: 2px solid #ccc;
	border-radius: 10px;
	font-size: 16px;
}

/* Remove arrows from number input */
.contact-form input[type="number"]::-webkit-outer-spin-button,
.contact-form input[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.contact-form input[type="number"] {
	-moz-appearance: textfield;
}

/* Submit button */
.contact-form .cta-button {
	background: #ec008e;
	color: #fff;
	padding: 15px 30px;
	border-radius: 5px;
	font-size: 1.2rem;
	margin-top: 20px;
	display: inline-block;
	transition: background 0.3s ease;
	z-index: 1;
	cursor: pointer;
}

/* On hover */
.contact-form .cta-button:hover {
	background: #333;
	cursor: pointer;
}
	

	
#captcha-image 
{
    display: block;
    border: 1px solid #ccc; /* Light grey border */
    border-radius: 5px; /* Slightly rounded edges */
    padding: 5px; /* Adds spacing around the image */
    background: #fff; /* Ensures a clean background */
    max-width: 100%; /* Prevents overflow */
}



.faq-section {
    margin-top: 80px;
    padding: 40px;
    border: 1px solid #ddd; /* Light gray border */
    border-radius: 8px; /* Rounded edges */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05); /* Soft shadow */
}




.cyan
{
	color: #00aef0;
}

.magenta
{
	color: #ec008e;
}


.yellow
{
	color: #fff202;
}


.black
{
	color: #000;
}
