body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding-top: 60px;
    padding: 0;
    box-sizing: border-box;
   background-color:#000000;
   
}

header {
    background-color: #083916;
    padding: 10px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-title {
    margin: 0;
    color: #ffffff;
}

nav {
    display: flex;
   

}

nav a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    padding: 10px;
    margin-left: 20px;
}


.main-component {
    display: flex;
    align-items: center; /* Vertically centers the text and image */
    justify-content: space-between; /* Ensures equal spacing between text and image */
    /* Adds some padding around the component */
}

.text {

    flex: 1; /* Takes up 50% of the space */
    padding-right: 0px; /* Adds spacing between text and image */
    
}

.image {
    flex: 1; /* Takes up 50% of the space */
    display: flex;
    justify-content: flex-end; /* Aligns the image to the right */
}

.image img {
    max-width: 100%; /* Ensures the image scales properly */
    height: auto; /* Maintain image aspect ratio */
}
.a {
    flex: 1; /* Takes up 50% of the space */
    padding-right: 20px; 
}
.video-section {
    text-align: center;
    color: #000000;
    
}

.video-section video {
    max-width: 80%;
    height: auto;
}
.video-section img {
    max-width: 100%;
    height: auto;
    padding:0px;
}




.image-comparison {
    display: flex;
    flex-wrap: wrap;
    padding: 50px;
    justify-content: space-around;
    align-items: center;
}

.image-comparison img {
    max-width: 45%;
    height: auto;
    margin: 10px;
}

.pricing {
    text-align: center;
    padding: 50px;
    background-color: #ffffff;
}

.pricing h2 {
    margin-bottom: 20px;
}

.pricing-table {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.pricing-table .plan {
    background-color: #e8f006;
    border: 1px solid #ddd;
    padding: 20px;
    margin: 10px;
    width: 250px;
}

.faq {
    padding: 50px;
    
    
     
}

.faq h2 {
    text-align: left;
    margin-bottom: 20px;
}

.faq-item {
    margin-bottom: 20px;
    color: #333;
}

.footer {
    background-color:#f2f2f1;
    color: #352fe4;
    text-align: center;
    padding: 20px 0;
}

/* Existing styles */

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding-top: 60px;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background-color: #e7df0e;;
    color: white;
    padding: 10px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    
}

.site-title {
    margin: 0;
}

nav {
    display: flex;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 10px;
    margin-left: 20px;
}

.form-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.form-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    margin-top: 20px;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.btn {
    background-color: linear-gradient(135deg, #2e00fd, #8b6cff); /* Green background */
    color: white; /* White text */
    font-size: 18px; /* Larger font size */
    padding: 12px 24px; /* Padding for a bigger button */
    border: none; /* No border */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.3s ease; /* Smooth transition for hover */
    flex-direction: column; /* Stacks the text and image vertically */
    align-items: flex-start;
}

.btn:hover {
    background-color: #4cae4c;
}

p {
    text-align: center;
    margin-top: 20px;
}

p a {
    color: #5cb85c;
    text-decoration: none;
}

p a:hover {
    text-decoration: underline;
}

footer {
    background-color:#49bfd6;
    color: #ffffff;
    text-align: center;
    padding: 20px 0;
    align-items: end;
}

@media (max-width: 480px) {
    .form-container {
        padding: 15px;
    }

    .header-container {
        flex-direction: column;
        
    }
   
    nav {
        justify-content: center;
        margin-top: 10px;
    }

    nav a {
        margin-left: 10px;
        margin-right: 10px;
    }
}
/* Header Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding-top: 60px;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background-color:#e7df0e;
    color: white;
    padding: 10px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-title {
    margin: 0;
}

nav {
    display: flex;
    color: white;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 10px;
    margin-left: 20px;
}

/* Sidebar and Content Layout */
.main-container {
    display: flex;
    flex: 1;
}

.sidebar {
    width: 250px;
    background-color: #2c3e50;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.sidebar ul {
    list-style-type: none;
    padding: 0;
}

.sidebar ul li {
    margin-bottom: 20px;
}

.sidebar ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.sidebar ul li a:hover {
    text-decoration: underline;
}

.content {
    flex: 1;
    padding: 20px;
}




#generateBtn:hover {
    background-color: #4cae4c;
}

.generated-image {
    text-align: center;
}

.generated-image h2 {
    margin-bottom: 10px;
}

#imageContainer {
    border: 1px solid #ccc;
    width: 100%;
   
    height: 400px;
    background-color: #f4f4f4;
}

@media (max-width: 768px) {
    .sidebar {
        width: 200px;
    }

    #promptInput {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .sidebar {
        display: none;
    }

    .canvas-container {
        width: 100%;
    }

    #promptInput {
        width: 150px;
    }

    #imageContainer {
        height: 300px;
    }
}


header {
    background: #116922;
    color: #fff;
    padding: 10px;
    
}


.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-container h1 {
    margin: 0;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 15px;
}

.main-container {
    display: flex;
    flex: 1;
    overflow: hidden;
}

.sidebar {
    background: #f4f4f4;
    width: 250px;
    padding: 20px;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    position: relative;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    margin: 10px 0;
}

.sidebar ul li a {
    text-decoration: none;
    color: #333;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    margin: 10px;
}

.content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .sidebar {
        width: 200px;
        position: absolute;
        left: -200px;
        top: 0;
        height: 100%;
        transition: left 0.3s ease;
    }

    .sidebar.show {
        left: 0;
    }

    .menu-toggle {
        display: block;
    }

    .content {
        margin-left: 0;
    }
}
#gradient-text {
    font-size: 3em;
    background: linear-gradient(to right, #ff7e5f, #feb47b); /* Gradient colors */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; /* Non-prefixed version for other browsers */
    color: transparent; /* Fallback for older browsers */
}



.pricing-container {
    width: 100%;
    padding: 50px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-header {
    text-align: center;
    margin-bottom: 20px;
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.pricing-toggle button {
    background: #eee;
    border: none;
    padding: 10px 20px;
    margin: 0 5px;
    cursor: pointer;
    border-radius: 5px;
}

.pricing-toggle button.active {
    background: #03280e;
    color: #fff;
}

.pricing-tabs {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.pricing-plan {
    display: none;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    
}

.pricing-plan.active {
    display: flex;
}

.pricing-plan > .plan {
    flex: 1;
    max-width: 300px;
    margin: 10px;
    color:#000000;
    background: #a8d18a;
    padding: 50px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* CSS for custom cursor */

/* General styles */

.main-container {
    display: flex;
    margin: 20px;
}

.sidebar {
    width: 200px;
    background: #f4f4f4;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    margin: 10px 0;
}

.sidebar ul li a {
    text-decoration: none;
    color: #333;
}

.content {
    flex: 1;
    padding: 20px;
}

.canvas-container {
    position: relative;
}

#paintCanvas {
    border: 1px solid #ccc;
    cursor: url('static/images/paint-brush.png') 16 16, auto;
}

.canvas-tools {
    margin-bottom: 10px;
}

.color-palette {
    display: flex;
    flex-wrap: wrap;
}

.color {
    width: 30px;
    height: 30px;
    border: 1px solid #ccc;
    margin: 5px;
    border-radius: 50%;
    cursor: pointer;
}

.tool-btn {
    background: #ddd30e;
    border: solid;
    border-color: #352fe4;
    cursor: pointer;
    color:#0926e3;
    font-size: large;

}


.prompt-container {
    margin-top: 20px;
}

#generateBtn {
    margin-top: 10px;
}

.generated-image {
    margin-top: 20px;
}

#imageContainer img {
    max-width: 100%;
}

/* Responsive styles */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .sidebar {
        width: 100%;
        display: none;
    }

    .sidebar.active {
        display: block;
    }

    .menu-toggle {
        display: block;
    }
}
/* General styles */



.main-container {
    display: flex;
    margin: 20px;
}

.sidebar {
    width: 200px;
    background: #f4f4f4;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    margin: 10px 0;
}

.sidebar ul li a {
    text-decoration: none;
    color: #333;
}

.content {
    flex: 1;
    padding: 20px;
}

.canvas-container {
    position: relative;
}

.canvas-wrapper {
    position: relative;
}

#paintCanvas {
    border: 1px solid #ccc;
    width: 100%;
    height: auto;
}

#brushIcon {
    position: absolute;
    display: none; /* Initially hidden */
    width: 30px; /* Adjust the size as needed */
    height: 30px; /* Adjust the size as needed */
    pointer-events: none; /* Ensure it does not interfere with canvas interaction */
}

.canvas-tools {
    margin-bottom: 10px;
}

.color-palette {
    display: flex;
    flex-wrap: wrap;
}

.color {
    width: 30px;
    height: 30px;
    border: 1px solid #ccc;
    margin: 5px;
    border-radius: 50%;
    cursor: pointer;
}



.tool-btn img {
    width: 24px;
    height: 24px;
}

.prompt-container {
    margin-top: 20px;
}

#generateBtn {
    margin-top: 10px;
}

.generated-image {
    margin-top: 20px;
}

#imageContainer img {
    max-width: 100%;
}

/* Responsive styles */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .sidebar {
        width: 100%;
        display: none;
    }

    .sidebar.active {
        display: block;
    }

    .menu-toggle {
        display: block;
    }
}
/* General styles */


.main-container {
    display: flex;
    margin: 20px;
}

.sidebar {
    width: 200px;
    background: #f4f4f4;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    margin: 10px 0;
}

.sidebar ul li a {
    text-decoration: none;
    color: #333;
}

.content {
    flex: 1;
    padding: 20px;
}

.canvas-container {
    position: relative;
}

#paintCanvas {
    border: 1px solid #ccc;
    width: 100%;
    height: auto;
    cursor: none; /* Hide default cursor */
}

#brushIcon {
    position: absolute;
    display: none; /* Initially hidden */
    width: 40px; /* Adjust size as needed */
    height: 40px; /* Adjust size as needed */
    pointer-events: none; /* Ensure it does not interfere with canvas interaction */
}

.canvas-tools {
    margin-bottom: 10px;
}

.color-palette {
    display: flex;
    flex-wrap: wrap;
}

.color {
    width: 30px;
    height: 30px;
    border: 1px solid #ccc;
    margin: 5px;
    border-radius: 50%;
    cursor: pointer;
}



.tool-btn img {
    width: 24px;
    height: 24px;
}

.prompt-container {
    margin-top: 20px;
}

#generateBtn {
    margin-top: 10px;
}

.generated-image {
    margin-top: 20px;
}

#imageContainer img {
    max-width: 100%;
}

/* Responsive styles */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .sidebar {
        width: 100%;
        display: none;
    }

    .sidebar.active {
        display: block;
    }

    .menu-toggle {
        display: block;
    }
}
/* General styles */





.tool-btn img {
    width: 24px;
    height: 24px;
}

.prompt-container {
    margin-top: 20px;
}

#generateBtn {
    margin-top: 10px;
}

.generated-image {
    margin-top: 20px;
}

#imageContainer img {
    max-width: 100%;
}


.pay {
    background-color: linear-gradient(135deg, #2e00fd, #8b6cff); /* Green background */
    color: white; /* White text */
    font-size: 18px; /* Larger font size */
    padding: 12px 24px; /* Padding for a bigger button */
    border: none; /* No border */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.3s ease; /* Smooth transition for hover */
    flex-direction: column; /* Stacks the text and image vertically */
    align-items: flex-start;
}

.pay:hover {
    background-color: #218838; /* Darker green on hover */
  }
  

.main-component {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* This allows items to wrap on smaller screens */
    background-color: #000000;
    
  }
  
  .text {
    flex: 1;
    margin-right: 20px;
    color: #ffffff;
  }
  
  img {
    width: 100%;
    height: auto;
    flex: 1;
  }
  
  @media (max-width: 768px) {
    .main-component {
      flex-direction: column; /* Stacks the text and image vertically */
      align-items: flex-start;
    }
  
    .text {
      margin-right: 0; /* Removes the right margin when stacked */
    }
  
    img {
      width: 100%; /* Makes the image take up full width */
      margin-top: 20px; /* Adds space between the text and image */
    }
  }
  
  .generate-btn {
    background-color: #0b10ac; /* Green background */
    color: white; /* White text */
    font-size: 18px; /* Larger font size */
    padding: 12px 24px; /* Padding for a bigger button */
    border: none; /* No border */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.3s ease; /* Smooth transition for hover */
    flex-direction: column; /* Stacks the text and image vertically */
    align-items: flex-start;
  }
  .generate-bttn {
    background-color: #0b10ac; /* Green background */
    color: white; /* White text */
    font-size: 18px; /* Larger font size */
    padding: 12px 24px; /* Padding for a bigger button */
    border: none; /* No border */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.3s ease; /* Smooth transition for hover */
    flex-direction: column; /* Stacks the text and image vertically */
    align-items: center;
  }
  
  .generate-btn:hover {
    background-color: #218838; /* Darker green on hover */
  }



.login-form {
    display: flex;
    justify-content: center;
    flex-direction: column;
    font-family: Arial, sans-serif;
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px; /* Maximum width for large screens */
}

/* Style the input fields */
.login-form input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

/* Style the button */
.login-form button {
    width: 100%;
    padding: 10px;
    background-color: linear-gradient(135deg, #2e00fd, #8b6cff);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}

.login-form button:hover {
    background-color: linear-gradient(135deg, #2e00fd, #8b6cff);
}



/* For smaller screens, ensure responsiveness */
@media (max-width: 768px) {
    .login-form {
        width: 90%;
    }
}

/* Ensure that only the form container is centered */
.centered-form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh; /* Adjust the height as necessary */
}

/* Style the form itself */
.login-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px; /* Maximum width for large screens */
}

/* Style the input fields */
.login-form input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

/* Style the button */
.login-form button {
    width: 100%;
    padding: 10px;
    background-color: linear-gradient(135deg, #2e00fd, #8b6cff);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}

.login-form button:hover {
    background-color: #218838;
}

/* Style the paragraphs and links */
p {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.9rem;
}

p a {
    color: #007bff;
    text-decoration: none;
}

p a:hover {
    text-decoration: underline;
}

/* Responsive adjustment for smaller screens */
@media (max-width: 768px) {
    .login-form {
        width: 90%;
    }
}
/* Ensure the layout is responsive */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Header and navigation styling */
header {
    background-color: #000000;
    color: white;
    padding: 10px 0;
    position: fixed; /* Makes it fixed */
    top: 0; /* Sticks it to the top */
    left: 0;
    width: 100%; /* Ensures it spans the full width */
    z-index: 1000; /* Keeps it above other elements */
}

nav ul {
    list-style-type: none;
    display: flex;
    justify-content: space-around;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}



/* Style for the generate button */
.generate-section button {
    background-color:linear-gradient(135deg, #2e00fd, #8b6cff);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.generate-section button:hover {
    background-color: linear-gradient(135deg, #2e00fd, #8b6cff);
}

/* Style for tokens section */
.tokens-section p {
    margin-top: 20px;
    font-size: 1.2rem;
}

/* Style for generated image section */
#generatedImageContainer {
    text-align: center;
}

#generatedImageContainer img {
    max-width: 100%;
    height: auto;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .main-container {
        flex-direction: column;
    }

    .left-column, .right-column {
        width: 100%;
    }

    .right-column {
        margin-top: 20px;
    }
}

/* Add this to your styles.css */
.logout-button {
    background-color: linear-gradient(135deg, #2e00fd, #8b6cff); /* Red background for logout button */
    color: white; /* White text */
    padding: 10px 20px; /* Padding */
    border: none; /* Remove border */
    border-radius: 5px; /* Rounded corners */
    text-decoration: none; /* Remove underline from link */
    font-weight: bold; /* Bold text */
    text-align: center; /* Center text */
}

.logout-button:hover {
    background-color: #c62828; /* Darker red on hover */
}

/* Styling for the image comparison container */
/* Section Styling */
.generated-images-section {
    padding: 20px;
    text-align: center;
}

.generated-images-section h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
}

/* Responsive Image Grid */
.image-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 0 auto;
    max-width: 1200px;
    position: relative;
}

.image-item {
    width: 100%;
    overflow: hidden;
    background-color: #f0f0f0;
    border-radius: 10px;
}

.image-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.image-item:hover img {
    transform: scale(1.05);
}

/* Reference Image Styling */
.reference-image {
    grid-column: span 1; /* Reference image takes 1 column */
}

.row-separator {
    grid-column: 1 / -1; /* Full width separator */
    height: 2px;
    background-color: lightgray;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Responsive Layout */
@media (max-width: 1024px) {
    .image-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reference-image {
        grid-column: span 2; /* Reference image spans 2 columns on smaller screens */
    }

    .row-separator {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .image-grid {
        grid-template-columns: 1fr;
    }

    .reference-image {
        grid-column: span 1; /* Reference image spans 1 column on mobile */
    }

    .row-separator {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .image-grid {
        grid-template-columns: 1fr;
    }

    .reference-image {
        grid-column: span 1;
    }

    .row-separator {
        grid-column: 1 / -1;
    }
}

.dropdown {
      position: relative;
      display: inline-block;
  }

  .dropbtn {
      background-color: #f1f1f1;
      border: none;
      padding: 10px;
      font-size: 16px;
      cursor: pointer;
  }

  .dropdown-content {
      display: none;
      position: absolute;
      background-color: #000000;
      min-width: 160px;
      box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
      z-index: 1;
  }

  .dropdown-content a {
      color: rgb(255, 255, 255);
      padding: 12px 16px;
      text-decoration: none;
      display: block;
  }

  .dropdown-content a:hover {background-color: #000000;}

  .dropdown:hover .dropdown-content {
      display: block;
  }

  .dropdown:hover .dropbtn {
      background-color: #000000;
  }

  /* General Styles */

/* Gallery Styles */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.image-container {
    position: relative;
}

.generated-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


h1 {
    text-align: center;
    margin-top: 20px;
}

/* Footer */
@media (max-width: 768px) {
    .image-container {
        width: calc(100% / 2 - 20px); /* Two images per row on small screens */
    }
}

@media (max-width: 480px) {
    .image-container {
        width: 100%; /* One image per row on very small screens */
    }
}
#video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
}

#content {
    padding: 20px;
    text-align: center;
}
.user-payment-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    margin: 20px auto; /* Centers the content horizontally */
    max-width: 90%; /* Ensures it adapts to different screen sizes */
    background-color: #f9f9f9; /* Light background to make the text stand out */
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.user-payment-details h2 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #333; /* Text color */
}

.user-payment-details p {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #555; /* Text color */
}

/* Responsiveness for smaller devices */
@media (max-width: 768px) {
    .user-payment-details {
        padding: 15px;
        max-width: 100%; /* Expand to fit smaller screen sizes */
    }

    .user-payment-details h2 {
        font-size: 1.5em; /* Adjust title font size */
    }

    .user-payment-details p {
        font-size: 1em; /* Adjust paragraph font size */
    }
}

@media (max-width: 480px) {
    .user-payment-details {
        padding: 10px;
    }

    .user-payment-details h2 {
        font-size: 1.2em;
    }

    .user-payment-details p {
        font-size: 0.9em;
    }
}
.container {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}
s

h3 {
    margin-bottom: 15px;
}

.customize-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.customize-box input[type="text"],
.customize-box input[type="email"],
.customize-box input[type="file"],
.customize-box button {
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    width: 100%;
}

.customize-box button {
    background-color: #007BFF;
    color: white;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease;
}

.customize-box button:hover {
    background-color: #0056b3;
}

#shareable-url {
    margin-top: 20px;
    display: none; /* Hidden until URL is generated */
}

.customization-pane input[type="color"] {
    width: 100px;
    margin-bottom: 15px;
}

/* Form customizations */
#customize-form {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

input[type="color"] {
    padding: 5px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

input[type="color"]:hover {
    cursor: pointer;
}
.container {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.left-pane, .right-pane, .customization-pane {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 30%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}



h3 {
    margin-bottom: 15px;
}

.customize-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.customize-box input[type="text"],
.customize-box input[type="email"],
.customize-box input[type="file"],
.customize-box button {
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    width: 100%;
}

.customize-box button {
    background-color: #007BFF;
    color: white;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease;
}

.customize-box button:hover {
    background-color: #0b10ac;
}

#shareable-url {
    margin-top: 20px;
    display: none; /* Hidden until URL is generated */
}

/* Logo Preview and Customization */
.logo-preview {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-preview img {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

#remove-icon-btn {
    padding: 5px;
    background-color: #dc3545;
    color: white;
    border: none;
    cursor: pointer;
}

#remove-icon-btn:hover {
    background-color: #c82333;
}

/* Form customizations */
#customize-form {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.customization-pane input[type="color"] {
    width: 100px;
    margin-bottom: 15px;
}

input[type="color"]:hover {
    cursor: pointer;
}
.submit {
    width :100px;
}
.customization-pane {
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-top: 20px;
}

.customization-pane h3,
.customization-pane h4 {
    margin-bottom: 10px;
}

.customization-pane label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

.customization-pane input[type="text"],
.customization-pane input[type="color"] {
    margin-top: 5px;
    margin-bottom: 15px;
    padding: 5px;
    width: 100%;
    max-width: 300px;
    border: 1px solid #ccc;
    border-radius: 4px;
}


#icon-preview {
    width: 100px;         /* Set the width to 100px */
    height: 100px;        /* Set the height to 100px */
    object-fit: cover;    /* Ensures the image is contained within the box */
    border: 1px solid #ccc; /* Optional: Add a border for styling */
    border-radius: 8px;   /* Optional: Rounded corners */
    display: block;       /* Ensure it does not affect layout */
    margin-top: 10px;     /* Optional: Add space between the label and the image */
}

/* Font size slider styling */
input[type="range"] {
    width: 100%;
    margin: 10px 0;
}

#font-size-display {
    margin-left: 10px;
    font-weight: bold;
}
/* Submit button font size slider */
input[type="range"] {
    width: 100%;
    margin: 10px 0;
}

#submit-font-size-display {
    margin-left: 10px;
    font-weight: bold;
}
#create-btn {
    background-color: #0b10ac; /* Green background */
    color: white; /* White text */
    font-size: 18px; /* Larger font size */
    padding: 12px 24px; /* Padding for a bigger button */
    border: none; /* No border */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.3s ease; /* Smooth transition for hover */
    flex-direction: column; /* Stacks the text and image vertically */
    align-items: flex-start;
}
#popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid #ccc;
    padding: 20px;
    background: #dee497;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#popup input {
    margin-bottom: 10px;
    background-color: #ebe4c5;
}
.container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
    max-width: 1200px;
    margin: 1rem auto;
}

/* Individual Panels */


/* Responsive Design */
@media (max-width: 800px) {
    .container {
        flex-direction: column; /* Stack blocks vertically */
        align-items: stretch; /* Make blocks full width */
    }

    .left-column, .right-column, .customization-pane {
        width:100%;
        flex: 0 0 100%; /* Each block takes full width */
        margin-bottom: 1rem; /* Add spacing between stacked blocks */
    }
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding-top: 60px;
    padding: 0;
    box-sizing: border-box;
   
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #4a4aff;
    color: #fff;
    padding: 10px 20px;
    position: fixed; /* Makes it fixed */
    top: 0; /* Sticks it to the top */
    left: 0;
    width: 100%; /* Ensures it spans the full width */
    z-index: 1000; /* Keeps it above other elements */
  }
  
  .brand {
    font-size: 1.5em;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
  }
  
  .nav-links li a {
    text-decoration: none;
    color: rgb(255, 255, 255);
  }
  
  .container {
    display: flex;
    height: calc(100vh - 50px); /* Subtract navbar height */
  }
  
  .sidebar {
    background: #f4f4f4;
    width: 20%;
    padding: 20px;
    border-right: 1px solid #ddd;
  }
  
  .trial-plan {
    margin-top: 20px;
    background: #fff3f3;
    padding: 15px;
    border: 1px solid #ff9999;
    border-radius: 5px;
  }
  
  .upgrade-btn {
    display: block;
    margin: 10px auto 0;
    background: #ff4081;
    border: none;
    padding: 10px 15px;
    color: white;
    cursor: pointer;
  }
  
  .content {
    width: 60%;
    padding: 20px;
    text-align: center;
  }
  
  .signup-section .logo {
    width: 80px;
    height: 80px;
    background: #ddd;
    border-radius: 50%;
    margin: 0 auto;
  }
  
  .form {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
  }
  
  .submit-btn {
    background: #6c63ff;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
  }
  
  .customization-panel {
    width: 20%;
    background: #f4f4f4;
    padding: 20px;
    border-left: 1px solid #ddd;
  }
  
  .tabs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  
  .tabs .tab {
    cursor: pointer;
  }
  
  .tabs .active {
    font-weight: bold;
    text-decoration: underline;
  }
  
  .tab-content {
    display: none;
  }
  
  .tab-content.active {
    display: block;
  }
  
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: Arial, sans-serif;
    
    padding-top: 60px; /* Adjust this based on actual navbar height */
      
      
  }
  
  .navbar {
    background: #4a4aff;
    color: white;
    padding: 15px;
    text-align: center;
  }
  
  .container {
    display: flex;
    justify-content: space-between;
    padding: 20px;
  }
  
  .customization {
    width: 40%;
    background: #f4f4f4;
    padding: 20px;
    border: 2px solid #ccc; /* Adds visible border */
    border-radius: 15px;
  }
  
  .customization h2 {
    margin-bottom: 15px;
  }
  
  .customization label {
    display: block;
    margin: 10px 0 5px;
  }
  
  .customization input,
  .customization select,
  .customization button {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
  }
  
  .customization button {
    background: linear-gradient(135deg, #2e00fd, #8b6cff);
    color: white;
    cursor: pointer;
  }
  
  .customization button:hover {
    background: #3b3bd1;
  }
  
  .preview {
    width: 55%;
  }
  
  .preview h2 {
    margin-bottom: 15px;
  }
  
  .form-preview {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
  }
  
  .form-preview h1 {
    margin-bottom: 10px;
  }
  
  .form-preview input {
    width: 80%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
  }
  
  .form-preview button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  #generated-url {
    margin-top: 10px;
    color: #4a4aff;
    font-weight: bold;
  }

select, table{
    width: 100%;
    margin-bottom: 20px;
}
table {
    border-collapse: collapse;
}
table, th, td {
    border: 1px solid #ddd;
}
th, td {
    padding: 8px;
    text-align: left;
}
th {
    background-color: #f4f4f4;
}
.content-box {
    text-align: center;
    padding: 20px;
    background: white;
    border: 2px solid #ddd;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.main-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    padding: 20px;
    height: 100%;
}

/* Left column for image upload, prompt input, and buttons */
.left-column {
    width: 30%;
    height:100vh;
    padding: 20px;
    background-color: #e5f1f7;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid #ccc; /* Adds visible border */
    border-radius: 15px;
}

/* Right column for displaying generated image */
.right-column {
    width: 70%;
    height:100vh;
    padding: 20px;
    background-color:#e5f1f7;
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    justify-content: center;
    align-items: center;
    border: 2px solid #ccc; /* Adds visible border */
    border-radius: 15px;
}
.faq-section {
    width: 100%;
    text-align:center;
    padding: 20px;
    display: flex;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    flex-direction: column; 
   
}

.faq-heading {
    font-size: 2rem;
    margin-bottom: 20px;
    align-items: left;
}

.faq-item {
    margin-bottom: 10px;
    align-items: right;
    flex-direction: column; 
}

.faq-question {
    width: 100%;
    text-align: left;
    font-size: 1rem;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    padding: 10px 0;
    cursor: pointer;
    align-items: center;
}

.faq-answer {
    display: none;
    margin-top: 5px;
    font-size: 0.9rem;
    color: #555;
}
#generateBtn {
    padding: 10px 20px;
    background-color: #1319c6;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.generateBtn {
    padding: 10px 20px;
    background-color: #1319c6;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.generateBtn-hidden {
    padding: 10px 20px;
    background-color: #1319c6;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display:none;
}

#generateBtn:hover {
    background-color: #1319c6;
}
.generateBttn-hidden {
    
    color: rgb(0, 0, 0);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display:none;
}

.header-container {
    display: flex;
    align-items: center; /* Vertically align items */
    justify-content: space-between; /* Separate logo/title and nav links */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; /* Optional: add horizontal padding */
    
}

/* Logo and title container */
.logo-container {
    display: flex; /* Arrange items horizontally */
    align-items: center; /* Vertically align logo and title */
    gap: 10px; /* Space between logo and title */
}

/* Logo styles */
.site-logo {
    height: 40px; /* Adjust as needed */
    width: auto; /* Maintain aspect ratio */
    display: block; /* Avoid inline spacing issues */
}

/* Title styles */
.site-title {
    font-size: 24px; /* Adjust font size as needed */
    color: #ffffff; /* Title color */
    margin: 0; /* Remove unwanted spacing */
    line-height: 1; /* Ensure no extra vertical space */
}
.lastcontainer {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}
h3{
    text-align:center;
  }

@media (max-width: 768px) {
    .header-container {
      flex-direction: column;
      align-items: flex-start;
    }
    .main-container {
      flex-direction: column;
    }
  
    .left-column,
    .right-column {
      width:100%;
      margin: 0;
    }
  }
#formLink 
{
    width:80%;
}

.idea-section {
    background-color: black; /* Black background */
    color: rgb(255, 255, 255); /* White text */
    text-align: center; /* Center-align text */
    padding: 40px 20px; /* Add some padding for spacing */
}

.idea-section h1 {
    margin-bottom: 10px; /* Space between headings */
    font-size: 28px; /* Adjust size if needed */
    
}
.image-slider {
    background-color: rgb(254, 251, 251);
    position: relative;
    width: 60%;
    margin: auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.slide {
    width: 100%;
    display: none;
}

.slide.active {
    display: block;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 24px;
    z-index: 100;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

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

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

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

.main-comp {
    display: flex;
    flex-direction: column; 
    align-items: center;
    justify-content: flex-start; 
    text-align: center;
    background-color: #000000;
    overflow: hidden;
    padding-top: 30px;
    gap: 0px; 
}

/* Typing Effect */
.typing-text {
    padding-top: 60px;
    font-size: 3rem;
    font-weight: bold;
    color: white;
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid white; /* Blinking cursor */
    width: 0;
    animation: typing 4s steps(40, end) forwards, blink 0.7s infinite;
    margin-bottom: 0; /* Remove default margin */
    padding-bottom: 0%;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    50% { border-color: transparent; }
}

/* Image Animation */
.image {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
    display: flex;
    margin-top: 0%;
    padding-top: 0%;
    padding-top: 0%;
    justify-content: center;
}

.moving-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    position: relative;
    display: block;
    animation: moveAndZoom 3s ease-out forwards;
}

@keyframes moveAndZoom {
    0% { transform: translateX(100%) scale(1); } /* Start from right */
    50% { transform: translateX(0) scale(1); } /* Move to center */
    100% { transform: translateX(0) scale(1.2); } /* Zoom in */
}
.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 1rem;
}

/* Hamburger Icon (Hidden on Desktop) */
.hamburger {
    font-size: 2rem;
    cursor: pointer;
    display: none;
    position: absolute;
    right: 20px;
    top:15px;
}
/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 20px;
        background: #000000;
        padding: 10px;
        border-radius: 5px;
    }

    .nav-links.show {
        display: flex;
    }
}

.g-signin2 {
    text-align: center;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    background-color: white;
    border: 1px solid #ddd;
    padding: 10px 20px;
    border-radius: 4px;
    color: #555;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}



.google-logo {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

.divider span {
    background: #fff;
    padding: 0 10px;
    position: relative;
    z-index: 1;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 100%;
    height: 1px;
    background: #ddd;
    left: 0;
    z-index: 0;
}
.google-signin-custom {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-weight: bold;
    background-color: white;
    transition: background 0.3s;
  }
  
  .google-signin-custom:hover {
    background-color: #f7f7f7;
  }
  
  .google-logo {
    height: 20px;
    margin-right: 10px;
  }
  .modal {
    display: none;
    position: relative;
    z-index: 1;
    left: 0; top: 50;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.4);
  }
  
  .modal-content {
    background: #fff;
    padding: 20px;
    padding-top: 50px;
    margin: 15% auto;
    width: 300px;
    height: 400px;
    border-radius: 10px;
    text-align: center;
  }
  
  .close {
    float: right;
    font-size: 20px;
    cursor: pointer;
  }
  
  .star-rating .star {
    font-size: 30px;
    color: #ccc;
    cursor: pointer;
    transition: color 0.2s;
  }
  
  .star-rating .star.selected,
  .star-rating .star:hover,
  .star-rating .star:hover ~ .star {
    color: gold;
  }
  
  textarea {
    width: 90%;
    height: 80px;
    margin-top: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    padding: 5px;
  }
 
  .star-rating .selected {
    color: gold;
  }

  #code-buttons {
    padding: 10px 20px;
    background-color: linear-gradient(135deg, #2e00fd, #8b6cff);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display:none;

  }
  #html-code{
    background-color: #0b10ac; /* Green background */
    color: white; /* White text */
    font-size: 18px; /* Larger font size */
    padding: 12px 24px; /* Padding for a bigger button */
    border: none; /* No border */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.3s ease; /* Smooth transition for hover */
    flex-direction: column; /* Stacks the text and image vertically */
    align-items: center;
  }