/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Hanken Grotesk', sans-serif;
    background-color: #fff;
    color: #333;
}

a {
    text-decoration: none;
}

/* Navbar */
.navbar {
    text-align: center;
    padding: 15px 0;
    background-color: white;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #ddd;
}

.navbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.navbar ul li {
    display: inline;
    margin: 0 20px;
}

.navbar ul li a {
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    font-family: "Hanken Grotesk", sans-serif;
    color: #333;
    transition: color 0.3s;
}

.navbar ul li a:hover {
    color: #28a745;
}

/* Book a Demo Section */
.book-demo-section {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}

.book-demo-section .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.book-demo-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #28a745;
}

.book-demo-section p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #555;
}

/* Calendly Widget */
.calendly-container {
    margin-top: 20px;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Specific styles for Book a Demo button */
.cta-nav {
    font-size: 1.1rem;
    background-color: #28a745;
    color: #fff !important; /* Added !important to force white text */
    padding: 10px 30px;
    border-radius: 5px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: background-color 0.3s;
	width: 950px !important;
}

.cta-nav:hover {
    background-color: #007f00;
}

/* Logo Section */

.logo {
	display: flex;
	align-items: center;
	justify-content: space-around;
	justify-content: center;
	height:250px;
}

.contact-us {
    font-size: 1.5rem;
    color: #666;
	font-family: "Hanken Grotesk", sans-serif;
	padding-left: 50px;
	width: 450px;
	text-align: center-right;
}

.top-banner {
    height: 90px;
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
	margin-top: 25px;
	scroll-margin-top: 80px; /* Adjust this based on your navbar height */
}

/* Default positioning for larger screens (closer to the middle-left) */
.banner-icon {
    height: 40px;
    width: auto;
    position: absolute;
    left: 15%; /* Move it 15% from the left edge */
    transition: left 0.3s ease;
}

.banner-logo {
	height: 40px;
    width: auto;
    position: absolute;
	right: 15%;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero {
    background-color: #fff;
    color: #000;
	margin-top: 30px;
	margin-bottom: 50px;
    text-align: center;
    background-image: url('path-to-your-image.jpg');
    background-size: cover;
    background-position: center;

}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 250;
	font-family: "Hanken Grotesk", sans-serif;
    font-style: normal;
	max-width: 60%;
    margin: 0 auto;
	text-align: center;
    margin-bottom: 40px;
	line-height: 1.0;
	word-spacing: -5px; /* Adds space between words */
    letter-spacing: -3px;
}

.hero p {
	text-align: center;
	margin: 5px 340px;
	color: #333;
    font-size: 1.5rem;
    line-height: 1.2;
	font-family: "Hanken Grotesk", sans-serif;
	margin-bottom: 60px;
}

.calendar {
	background-color: #F0F0F0;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #28a745;
    color: #fff;
}

footer p {
    font-size: 1rem;
    margin: 0;
}

