* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #1A2C38;
}

/* Header */
.large-header {
	position: relative;
	width: 100%;
    max-width: 1024px;
/*	background: #1A2C38;
background: red;*/
	overflow: hidden;
/*	background-size: 100%;*/
	background-position: center center;
	z-index: 1;
}

#large-header {
	 background-image: url('https://www.focusminds.ai/images/focusminds.ai.png'); 
     background-position: top center;
     background-repeat: no-repeat;
     background-size: clamp(100px, 100%, 1000px);

     margin: 0 auto;
}

.main-title {
	position: absolute;
	margin: 0;
	padding: 0;
	color: #f9f1e9;
	text-align: center;
	top: 25%;
	left: 50%;
	-webkit-transform: translate3d(-50%,-50%,0);
	transform: translate3d(-50%,-50%,0);
}

.demo-1 .main-title {
	text-transform: uppercase;
	font-size: 4.0em;
	letter-spacing: 0.1em;
}

.main-title .thin {
	font-weight: 200;
}

     /*   nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo img {
            max-height: 50px;
        }*/
        .nav-links {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .nav-links li {
            margin-left: 1rem;
        }
        .nav-links a {
            text-decoration: none;
            color: #333;
            text-shadow: #777 1px 0 7px;
        }/*
 /* Hamburger menu styles */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: #fff;
            margin: 2px 0;
            transition: 0.4s;
        }
@media only screen and (max-width : 768px) {
	.demo-1 .main-title {
		font-size: 3em;
	top: 10%;
	}
   .nav-links {
        display: none !important;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #1A2C38;
        padding: 1rem;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    .nav-links.active {
        display: flex !important;
        z-index: 10;
    }
    .nav-links li {
        margin: 0.5rem 0;
    }
    .hamburger {
        display: flex;
    }
    /* Animate hamburger to X when active */
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }        }

header {
    background-color: #1A2C38;

;
    color: #fff;
    padding: 10px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    margin: auto;
}

.logo h1 {
    font-size: 24px;
}

.logo img {
    width: 100px;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    text-shadow: #777 1px 0 7px;
}

#auth-button {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    text-shadow: #777 1px 0 7px;
    cursor: pointer;
}

.hero {
   /* background-image: url('hero-image.jpg');
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex; */
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    margin: 0px 15px 15px 15px;
}

.hero-content {
    max-width: 800px;
    padding: 1em;
}

.hero h2 {
    font-size: 22px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 20px;
}

.cta-button {
    background-color: #6093B5;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-size: 26px;
}

.cta-button:hover {
    background-color: #555;
}

.chatbot {
    padding: 40px 20px;
    background-color: #fff;
}

.chatbot p {
  /*  max-width: 600px; */
    font-size: 14px;
    margin: auto;
 /*   display: flex; */
   /* flex-direction: column; */
}



.services, .terms {
    padding: 40px 60px;
    background-color: #fff;
    max-width: 800px;
    margin: auto;
}

.terms p, .terms h2, .terms li, .terms ol { 
    padding-bottom: 20px !important;
}

    


.services h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 28px;
}

.service-item {
    margin-bottom: 20px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
}

.service-item h3 {
    margin-bottom: 10px;
    font-size: 24px;
}

.contact {
    padding: 40px 20px;
    background-color: #fff;
}

.contact h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 28px;
}

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

.contact label {
    margin-bottom: 5px;
    font-size: 16px;
}

.contact input, .contact textarea {
    margin-bottom: 20px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact button {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
}

.contact button:hover {
    background-color: #555;
}

.contactintro {
    max-width: 600px;
    margin: auto;
    margin-bottom: 25px;
}

footer {
  /*  background-color: #333; */
    color: #eee;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

footer a {
    color: #eee;
    text-decoration: none;
}

.footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.iframe-container {
    position: relative;
    height: calc(100vh - 300px); /* Adjust 100px to match the height of the header/nav */
}

.iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none; /* Remove default iframe border */
}


iframe {
  /*  position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none; */
}

/* Overlay and Popup styles */
.overlay {
 /*   position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;*/
}

.popup-content {
 /*   background: #fff;
    padding: 20px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    position: relative;*/
}

.close-btn {
 /*   position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;*/
}

.close-btn:hover {
    color: #333;
}

iframe {
    border: none;
  /*  margin: 20px 0;*/
}

#hideButton, #showButton {

    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin: 0px 15px;
}

.pricingSection {
  /*  background-color: #fff;*/
    font-size: 14px;
    margin: auto;
    width: 288px;
}

.benefitsSection {
    /*background-color: #fff;*/
    color: white !important;
    font-size: 14px;
    margin: auto;
    max-width: 600px;
}

.aboutSection {
    /*background-color: #fff;*/
    color: white !important;
    font-size: 14px;
    margin: auto;
    max-width: 800px;
    padding: 10px;
}


.benefitsSection h2, .benefitsSection p {
    margin-bottom: 15px;
    text-align: justify;
}

.aboutSection p {
    margin-bottom: 15px;
    text-align: justify;

}
.aboutSection h2 {
    margin-bottom: 15px;
    font-size: 16px;

}



.whitelink {
    color: white;
}