/* General Styles */


:root {
  --primary-color: #5555ff;  
  --alt-color: ##5555ff; 
  --alt-color-second: #887CAF;  
  --alt-color-deep: #101820; 
}



.primary-color
{
	color: var(--primary-color) !important;
}

.alt-color
{
	color: var(--alt-color) !important;
}

.alt-color-second
{
	color: var(--alt-color-second) !important;
}




* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Montserrat', sans-serif;
}

body {
	color: #212529;
	line-height: 1.6;
}


a {
	text-decoration: none;
	font-weight: bold;
	color: rgb(108, 117, 125);
}


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


header {
  padding: 40px 0;
  text-align: center;
  background: #f5f5f5;
}

.logo-container {
  display: inline-block;
}

.logo-wrapper {
  display: flex;
  align-items: center;
}

.text-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-text {
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -1px;
  line-height: 1;
}

.tagline {
  font-size: 22px; /* Increased from 20px */
  color: #495057;
  font-weight: 300;
  margin-top: 2px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .logo-text {
    font-size: 30pt; /* Smaller on mobile */
  }
  
  .tagline {
    font-size: 18pt; /* Smaller on mobile */
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .logo-wrapper {
  }
  
  .logo-wrapper img {
    margin-bottom: 10px;
    max-width: 80px; /* Smaller logo image */
  }
  
  .text-container {
    align-items: center; /* Center text when stacked */
  }
  
  .logo-text {
    font-size: 24pt; /* Even smaller on very small screens */
  }
  
  .tagline {
    font-size: 16pt;
  }
}

.hero {
	
	background: white;
    color: black;
	
	padding: 80px 0;
	text-align: center;
	border-radius: 12px;
	margin-bottom: 60px;
	position: relative;
	overflow: hidden;
	min-height: 80vh;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
  background-size: cover;
  opacity: 0.2;
  mix-blend-mode: soft-light;
  pointer-events: none; /* Add this line */
}
.hero-content {
	position: relative;
	z-index: 1;
	max-width: 800px;
	margin: 0 auto;
}

.hero h1 {
	font-size: 56px;
	font-weight: 800;
	margin-bottom: 20px;
	text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero p {
	font-size: 22px;
	margin-bottom: 40px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.italian-flag-accent {
	display: flex;
	max-width: 150px;
	height: 8px;
	margin: 0 auto 30px;
	border-radius: 4px;
	overflow: hidden;
}

.flag-green {
	flex: 1;
	background-color: #009246;
}

.flag-white {
	flex: 1;
	background-color: #ffffff;
}

.flag-red {
	flex: 1;
	background-color: #ce2b37;
}

.cta-button {
	background: var(--primary-color);
	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 */
.cta-button:hover {
	background: #333;
	cursor: pointer;
	color: white !important;
}



.features {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 80px;
}

.feature {
	flex: 0 0 30%;
	background: white;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 6px 16px rgba(0,0,0,0.05);
	margin-bottom: 30px;
	text-align: center;
}

.feature h3 {
	font-size: 24px;
	margin-bottom: 16px;
	color: #212529;
}

.feature p {
	color: #3a3a3a;
	font-size: 16pt;
	
}

.feature-icon {
	font-size: 48px;
	margin-bottom: 20px;
	color: #007bff;
}

.stats {
	background: white;
	padding: 60px;
	border-radius: 12px;
	box-shadow: 0 6px 16px rgba(0,0,0,0.05);
	text-align: center;
	margin-bottom: 80px;
}

.stats-title {
	font-size: 32px;
	margin-bottom: 40px;
	color: #212529;
}

.stats-grid {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	margin-top: 44pt;
}

.stat {
	flex: 0 0 30%;
	margin-bottom: 30px;
}

.stats h2
{
	font-size: 2.5rem !important;
	margin-bottom: 20px;
	color: #1A2A4F;
	font-weight: bold;
}


.stat-number {
	font-size: 48px;
	font-weight: 700;
	color: #007bff;
	margin-bottom: 10px;
}

.stat-label {
	color: #6c757d;
	font-size: 18px;
}

.contact {
	text-align: center;
	padding: 40px 0 80px;
}

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

.contact p {
	font-size: 18px;
	color: #6c757d;
	margin-bottom: 30px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

footer {
	text-align: center;
	padding: 40px 0;
	color: #6c757d;
	font-size: 14px;
	background: #f0f0f0 !important;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}



/* AI styling elements */
.ai-gradient-text {
	background: linear-gradient(90deg, #009246, #007bff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	display: inline-block;
}

@media (max-width: 768px) {
	.hero h1 {
	font-size: 42px;
	}
	
	.features {
	flex-direction: column;
	}
	
	.feature {
	flex: 0 0 100%;
	}
	
	.stats-grid {
	flex-direction: column;
	}
	
	.stat {
	flex: 0 0 100%;
	}
}

/* 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: var(--primary-color);
	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;
}
	


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


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

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


.mockup-item h2 
{
  font-size: 2.3rem !important;
  margin-bottom: 20px;
  color: #1A2A4F;
  min-height: 70px; /* Creates consistent height for all titles */
  display: flex;
  align-items: center;
  justify-content: center;
}

.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;
  min-height: 80px; /* Adjust as needed */
}

.mockup-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Default to 2 columns */
  gap: 20px;
  text-align: center;
  justify-content: center;
}

.mockup-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Responsive Styles */
@media (max-width: 992px) { /* Tablet Size */
	.mockup-grid {
		grid-template-columns: repeat(2, 1fr); /* Keep 2 columns on tablets */
	}
}

@media (max-width: 768px) { /* Mobile */
	
	.mockup-grid {
		grid-template-columns: repeat(1, 1fr); /* Keep 2 columns on tablets */
	}
	
	
	.mockup-item {
		width: 100%; /* Stack vertically */
	}

	/* Adjust logo for smaller screens */
	header h1 img {
		max-width: 90%; /* Scales down */
	}
}

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

/* 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;
	}
	
	h2
	{
		font-size: 1.8rem !important; /* Reduce heading size for mobile */
	}
	
	.hero h2 {
        font-size: 1.8rem !important; /* Reduce heading size for mobile */
     
        word-break: break-word !important;
    
    }

    .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 !important; /* Reduce heading size for mobile */
    }
    

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