* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
}

footer{
    background-color: #ffffff;
    padding:20px;
}
.footer-content{
    display: flex;
    flex-direction: column;
    margin:20auto;
    text-align: center;
    justify-content: center;
    align-items: center;
    gap: 10px;   
}
.footer-links a{
    text-decoration: none;
    color: #007aff;
}
/* Navigation Buttons */
.navButtons {
    position: fixed;
    top: 10px;
    right: 20px;
    display: flex;
    gap: 20px; /* Increased spacing between buttons */
    z-index: 2000; /* Above other content */
}

.navButton {
    padding: 8px 16px;
    background: #0066ff;
    color: #ffffff;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.navButton:hover {
    background: #005bb5;
}

/* Specific styling for the account button to make it a light blue circle */
.navButton:has(.navIcon) {
    background: #e6f0ff; /* Light blue background */
    border-radius: 50%; /* Circular shape */
    padding: 8px; /* Square padding to maintain circle */
    width: 36px; /* Fixed width to ensure circle */
    height: 36px; /* Fixed height to ensure circle */
    display: flex;
    justify-content: center;
    align-items: center;
}

.navButton:has(.navIcon):hover {
    background: #d1e4ff; /* Slightly darker light blue on hover */
}

.navButton.signoutButton {
    background: transparent;
    color: #ff4d4d;
    border: 1px solid #ff4d4d;
}

.navButton.signoutButton:hover {
    background: #ff4d4d;
    color: #ffffff;
}

.navButton.builderButton {
    background: #0066ff;
    color: #ffffff;
}

.navButton.builderButton:hover {
    background: #005bb5;
}

.navIcon {
    width: 20px;
    height: 20px;
}
.logo-image {
    height: 50px;
    width: auto;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.transparentHeader {
    background-color: transparent;
    box-shadow: none;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #666;
}

.logo .bubble {
    background-color: #e6f0ff;
    color: #0066ff;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.auth-buttons {
    display: flex;
    gap: 10px;
}

.auth-buttons a {
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.4;
}

.auth-buttons .login {
    color: #666;
    background-color: #f5f5f5;
}

.auth-buttons .start-trial {
    color: #fff;
    background-color: #0066ff;
}

/* Main Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 50px 20px;
    background-color: #fff;
}

/* Ensure the hero section doesn't overflow the viewport height */
.hero > * {
    flex-shrink: 0;
}

.go-live {
    margin-bottom: 20px;
    padding: 8px 20px;
    background-color: #e6f0ff;
    color: #0066ff;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.hero h1 {
    font-size: 60px;
    font-weight: 700;
    max-width: 800px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin-bottom: 30px;
}

.cta-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
}

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

.cta-buttons a, .cta-buttons button {
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.4;
}

.cta-buttons .start-trial {
    background-color: #0066ff;
    color: #fff;
}

.cta-buttons .how-it-works {
    background-color: #e6f0ff;
    color: #0066ff;
}

.resources-tutorials {
    color: #007bff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.2s ease;
    display: inline-block;
}

.resources-tutorials:hover {
    color: #0056b3;
    background-color: #f8f9fa;
    text-decoration: none;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .resources-tutorials {
        font-size: 14px;
    }
}

/* Image container for horizontal scrolling */
.image-container {
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    display: flex;
    gap: 40px; /* Spacing between images on desktop */
    padding-left: 50px; /* Added padding-left as requested */
    margin-bottom: 30px;
    scroll-behavior: smooth; /* Smooth scrolling when clicking */
}

.image-container img {
    flex: 0 0 60%; /* Each image takes 60% of the viewport width */
    width: 60%; /* Explicit width to ensure proper rendering */
    height: auto; /* Full natural height */
    object-fit: contain; /* Preserve aspect ratio, no cropping */
    border-radius: 15px;
    scroll-snap-align: center; /* Snap each image to the center */
    cursor: pointer; /* Indicate the image is clickable */
}

/* Hide scrollbar for better aesthetics */
.image-container::-webkit-scrollbar {
    display: none;
}

.image-container {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

/* Indicator dots */
.dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    cursor: pointer;
}

.dots .active {
    background-color: #0066ff;
}

.dots .inactive {
    background-color: #ccc;
}

/* Keep it simple section */
.keep-simple {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 30px;
}

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

.keep-simple-buttons a, .keep-simple-buttons button {
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.4;
}

.keep-simple-buttons .start-trial {
    background-color: #0066ff;
    color: #fff;
}

.keep-simple-buttons .how-it-works {
    background-color: #e6f0ff;
    color: #0066ff;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .hero {
        padding: 30px 15px;
    }

    .hero h1 {
        font-size: 36px;
        line-height: 1.3;
    }

    .hero p {
        font-size: 16px;
        max-width: 90%;
    }

    .image-container {
        gap: 20px; /* Reduced spacing on mobile */
    }

    .image-container img {
        flex: 0 0 100%; /* Full width on mobile */
        width: 100%; /* Explicit width for mobile */
    }

    .keep-simple {
        font-size: 30px;
    }

    .cta-buttons a,
    .keep-simple-buttons a {
        padding: 10px 25px;
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1.4;
    }

    .dots {
        gap: 8px; /* Slightly smaller gap on mobile */
    }

    .dots span {
        width: 8px; /* Slightly smaller dots on mobile */
        height: 8px;
    }
}

/* signup page */
.signupContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
    background: #f5f5f5;
    font-family: Arial, sans-serif;
}

.signupForm {
    width: 350px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 0 0 10px rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
}

.signupForm_header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.signupForm_header p {
    color: #888;
}

.signupForm h2 {
    text-align: center;
    color: #333;
    margin-bottom: 5px;
    font-size: 2em;
    font-weight: 600;
}

.signupForm .error-message {
    color: #ff4d4d;
    text-align: center;
    margin-bottom: 15px;
    font-size: 14px;
    display: none;
}

.signupForm .success-message {
    color: #007aff;
    text-align: center;
    margin-bottom: 15px;
    font-size: 14px;
    display: none;
}

.signupForm input {
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgb(163 163 163 / 50%);
    border-radius: 20px;
    padding: 10px 15px;
    color: #000000;
    font-size: 14px;
    box-sizing: border-box;
    margin-bottom: 15px;
    outline: none;
}

.signupForm input::placeholder {
    color: #b0b0b0;
}

.signupButton {
    width: 100%;
    padding: 10px;
    background: #0066ff;
    color: #ffffff;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s;
}

.signupButton:hover {
    background: #005bb5;
}

.password-input-container {
    width: 100%;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.password-input-container input {
    width: 100%;
    padding-right: 45px;
    margin-bottom: 0;
}

.password-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s;
    background-color: transparent;
    margin-left: 10px;
    font-size: 1.2em;
}

.signupLink{
    text-align: center;
}
/* Account Page */
.accountContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: calc(100vh - 60px); /* Adjusted for navButtons height */
    background: #f5f5f5;
    padding: 20px;
}

.accountForm {
    width: 350px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 0 0 10px rgba(255, 255, 255, 0.2);
}

.accountForm_header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.accountForm_header p {
    color: #888;
    font-size: 14px;
}

.accountForm h2 {
    text-align: center;
    color: #333;
    margin-bottom: 5px;
    font-size: 2em;
    font-weight: 600;
}

.accountForm input {
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgb(163 163 163 / 50%);
    border-radius: 20px;
    padding: 10px 15px;
    color: #000000;
    font-size: 14px;
    box-sizing: border-box;
    margin-bottom: 15px;
    outline: none;
}

.accountForm input::placeholder {
    color: #b0b0b0;
}

.accountForm button {
    width: 100%;
    padding: 10px;
    background: #0066ff;
    color: #ffffff;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s;
}

.accountForm button:hover {
    background: #005bb5;
}

.successMessage {
    color: #007aff;
    text-align: center;
    margin-bottom: 15px;
    font-size: 14px;
}

.errorMessage {
    color: #ff4d4d;
    text-align: center;
    margin-bottom: 15px;
    font-size: 14px;
}
.cancelButton {
    background-color: red;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    margin-top: 20px;
}
.restartButton, .billingButton {
    background-color: #333;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    margin-top: 20px;
    border-radius: 6px;
}

.accountActions_wrapper{
    display: flex;
    gap: 10px;
}