
/* Style for the hamburger icon */
.hamburger {
  cursor: pointer;
  position: absolute;
  right: 0;
  padding-right: 20px;
  display: none;
}

@media screen and (max-width: 768px) {
  .hamburger {
    display: block;
  }
}

.hamburger img {
  width: 30px;
  height: 30px;
}

/* Hidden mobile menu by default */
.mobile-menu {
  display: none;
  position: fixed; /* Changed to fixed for better mobile experience */
  top: 0;
  right: 0;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: -2px 0 20px rgba(0, 0, 0, 0.1);
  z-index: 100;
  width: 280px;
  padding: 20px;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  overflow-y: auto;
}

.mobile-menu.open {
  display: block;
  transform: translateX(0);
}

.mobile-menu ul {
  list-style-type: none;
  padding: 0;
  margin: 20px 0;
}

.mobile-menu ul li {
  padding: 0;
  margin: 8px 0;
  border-bottom: 1px solid #eaeaea;
}

.mobile-menu ul li:last-child {
  border-bottom: none;
}

.mobile-menu ul li a {
  text-decoration: none;
  color: #333;
  display: block;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.mobile-menu ul li a:hover {
  background-color: #f8f9fa;
  color: #2563eb;
  transform: translateX(4px);
}

/* Optional: Add overlay when menu is open */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.open {
  display: block;
  opacity: 1;
}

/* Add close button styles */
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.mobile-menu-close::before,
.mobile-menu-close::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: #333;
  top: 50%;
  left: 50%;
  transition: background-color 0.2s ease;
}

.mobile-menu-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu-close:hover::before,
.mobile-menu-close:hover::after {
  background-color: #2563eb;
}

.loading-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-top: 4px solid #000;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
 
.navbar {
  background: var(--colors-base-background, #ffffff);
  border-style: solid;
  border-color: var(--default-100, #dfe1e7);
  border-width: 0px 0px 1px 0px;
  padding: 16px 20px;
  width: 100%;
  height: auto;
  position: sticky;
  top: 0;
  z-index: 1000;
  /* Add these properties */
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-imazai {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
}
.zap-fast {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  position: relative;
}
.zap-fast2 {
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0%;
  left: 0%;
  bottom: 0%;
  top: 0%;
  overflow: visible;
}
.imazai {
  color: #0179ff;
  text-align: left;
  font-family: "DmSans-Bold", sans-serif;
  font-size: 24px;
  line-height: 150%;
  font-weight: 700;
  position: relative;
  cursor: pointer;
}


/* Navbar right items */
.button-parent {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  margin-left: auto;
  position: relative;
  width: fit-content;
}

.button5 {
  cursor: pointer;
  border: 0;
  padding: 12.5px 23px;
  background-color: #0179ff;
  box-shadow: 0 1px 2px rgba(13, 13, 18, 0.06);
  border-radius: 100px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  position: relative; /* Add this */
  z-index: 1; /* Add this */
}

.icon {
  height: 48px;
  width: 48px;
  border-radius: 100px;
  display: flex;
  background-color: #0179ff;
  align-items: center;
  justify-content: center;
  z-index: 2; /* Increased z-index to be above button5 */
  margin-left: -20px;
  border: 2px solid white;
}

.icon img {
  width: 24px;
  height: 24px;
  display: block;
}

.chevron-left-icon1 {
  height: 20px;
  width: 20px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  display: none;
}

.labeln {
  position: relative;
  font-size: 15px;
  line-height: 155%;
  display: inline-block;
  color: #fff;
  min-width: 72px;
  white-space: nowrap;
}

/* ------- */


.nav-link-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  font-size: 14px;
  color: #272835;
}
 .nav-link {
  background: var(--default-25, #f6f8fa);
  border-radius: 100px;
  border-style: solid;
  border-color: var(--default-50, #eceff3);
  border-width: 1px;
  padding: 0px 4px 0px 4px;
  display: flex;
  flex-direction: row;
  gap: var(--layout-spacing-24px, 24px);
  align-items: center;
  justify-content: center;
  height: 45px;
  /* position: absolute;
  left: calc(50% - 175.5px);
  top: calc(50% - 20px); */
  text-decoration: none;
}
.button2 {
  flex: 0.8077;
  border-radius: 100px;
  background-color: #272835;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 9px 15px;
  gap: 8px;
  color: #f8fafb;
}
.label4 {
  color: var(--default-700, #272835);
  text-align: center;
  font-family: "DmSans-Bold", sans-serif;
  font-size: 14px;
  line-height: 155%;
  letter-spacing: -0.01em;
  font-weight: 700;
  position: relative;
  text-decoration: none;
}
.button3 {
  border-radius: 100px;
  padding: 8px 16px 8px 16px;
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: 40px;
  position: relative;
}
.label5 {
  text-decoration: none;
  cursor: pointer;
 
  text-align: center;
  font-family: "DmSans", sans-serif;
  font-size: 14px;
  line-height: 155%;
  letter-spacing: -0.01em;
  font-weight: 500;
  position: relative;
}
/* .icon {
  background: #0179ff;
  border-radius: 100px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  position: absolute;
  left: 1344px;
  top: 12px;
} */
.arrow-up-right {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
}
.arrow-up-right2 {
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0%;
  left: 0%;
  bottom: 0%;
  top: 0%;
  overflow: visible;
}















 


 .home-generate,
.home-generate * {
  box-sizing: border-box;
}

.home-generate {
  background: var(--default-25, #ffffff);
  height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.header {
  background: var(--default-0, #f8fafb);
  width: 100%;
  padding: 40px 20px;
  position: relative;
}

.frame-40943 {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  justify-content: center;
  position: center;
  width: 100%;
  max-width: 1236px;
  margin: 0 auto;
}

.left {
  display: flex;
  flex-direction: column;
  gap: var(--layout-spacing-24px, 24px);
  align-items: center;
  justify-content: center;
  width: 100%;
}

.create-image-manipulations-only-with-command {
  color: var(--colors-base-default-foreground, #000000);
  text-align: center;
  font-family: "InstrumentSans-SemiBold", sans-serif;
  font-size: 28px;
  line-height: 120%;
  font-weight: 600;
  width: 100%;
}

.these-steps-outline-the-process-of-using-the-ai-image-generator-from-choosing-a-style-to-saving-or-sharing-the-final-artwork {
  color: var(--colors-base-text-paragraph, #666d80);
  text-align: center;
  font-family: "InstrumentSans-Regular", sans-serif;
  font-size: 14px;
  line-height: 160%;
  letter-spacing: -0.01em;
  font-weight: 400;
  width: 100%;
}

.text-area {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
}

.label {
  display: flex;
  flex-direction: row;
  gap: 0px;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  text-decoration: none;
}

.text {
  color: var(--default-900, #0d0d12);
  text-align: left;
  font-family: "InstrumentSans-Medium", sans-serif;
  font-size: 14px;
  line-height: 155%;
  font-weight: 500;
  flex: 1;
}

.input {
  background: var(--default-0, #f8fafb);
  border-radius: 10px;
  border-style: solid;
  border-color: var(--default-100, #dfe1e7);
  border-width: 1px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  min-height: 150px;
}

.label2 {
  /* color: var(--default-300, #a4acb9); */
  text-align: left;
  font-family: "Dmsans", sans-serif;
  font-size: 16px;
  line-height: 160%;
  font-weight: 500;
  width: 100%;
  text-decoration: none;
  padding-left: 25px;
  color:rgb(0, 0, 0);
}

.footer {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
}

.hint-text, .hint-text3 {
  color: var(--default-300, #a4acb9);
  text-align: center;
  font-family: "InstrumentSans-Regular", sans-serif;
  font-size: 12px;
  line-height: 155%;
  font-weight: 400;
  
}


/* new footer */

.contact-container-parent {
  display: flex;
  width: 100%;
  padding: 0 0 52px;
  text-align: center;
  font-size: var(--font-size-21xl);
  color: var(--additional-black);
  font-family: var(--font-instrument-sans);
  position: relative;  /* Added to allow absolute positioning of children */
  min-height: 343px;  /* Ensure minimum height for content */
}

.contact-container {
  background-color:rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 346px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  /* padding: var(--padding-31xl) var(--padding-xl) 207px var(--padding-3xl); */
  box-sizing: border-box;
  gap: 20px;
}

.contact-us {
  margin: 0;
  position: relative;
  font-size: 40px;
  letter-spacing: -0.01em;
  line-height: 120%;
  font-weight: 600; /* Keep either 600 or bold */
  font-family: 'Instrument Sans', sans-serif; /* Add a fallback font if 'Instrument Sans' is not available */
  z-index: 1;
}


.contact-title-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0 59px 0 55px;
  box-sizing: border-box;
  max-width: 100%;
  margin-top: 45px;
}

.experience-the-power2 {
  position: relative;
  font-size: 16px;
  letter-spacing: -0.01em;
  line-height: 160%;
  font-family: 'Instrument Sans', sans-serif;
  color: #666d80;
  z-index: 1;
  font-size: 16px;
}

.new-footer {
  z-index: 100;
  background-color: #000000;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  width: 85%;
  height: 343px;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  padding: 40px 20px;
  position: absolute;
  bottom: -35%;  /* Position footer 50% below the parent */
  left: 50%;
  transform: translateX(-50%);  /* Center horizontally */
}


.footer-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: -5px;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  animation: gridMove 15s linear infinite;
}


/* Add subtle glow effect */
.footer-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 255, 255, 0.1),
    transparent 70%
  );
  pointer-events: none;
}

/* Add grid overlay with different size for depth */
.footer-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(30px);
  }
}

/* Content Styles */
.footer-title {
  font-size: 26px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.footer-description {
  font-size: 16px;
  margin-bottom: 20px;
  max-width: 80%;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.social-icon {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-3px);
}

.contact-button {
  background-color: #0179ff;
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.contact-button:hover {
  background-color: #0060cc;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(1, 121, 255, 0.2);
}

.contact-button:active {
  transform: translateY(0);
}

/* Add gradient overlay to fade edges */
.new-footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0) 20%,
    rgba(0, 0, 0, 0) 80%,
    rgba(0, 0, 0, 0.3) 100%
  );
  pointer-events: none;
}

/* Media Queries */
@media (max-width: 768px) {
  .new-footer {
    height: auto;
    min-height: 343px;
    padding: 30px 15px;
  }
  
  .footer-title {
    font-size: 22px;
  }
  
  .footer-description {
    font-size: 14px;
    max-width: 90%;
  }
  
  .social-icon {
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 480px) {
  .footer-title {
    font-size: 20px;
  }
  
  .footer-description {
    max-width: 95%;
  }
  
  .social-icons {
    gap: 12px;
  }
  
  .social-icon {
    width: 30px;
    height: 30px;
  }

  .hamburger{
    display: block;
    visibility: visible;
  }
  
}

.button {
  outline: none;
  text-decoration: none;
  border:none;
  background: var(--color-primary-300, #0179ff);
  cursor: pointer;
  border-radius: 100px;
  text-decoration: none;
  padding: 8px 24px;
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 189px;
  height: 52px;
  box-shadow: var(--shadow-xsmall-box-shadow, 0px 1px 2px 0px rgba(13, 13, 18, 0.06));
}

.label3 {
  color: var(--additional-white, #ffffff);
  text-align: center;
  font-family: "InstrumentSans-SemiBold", sans-serif;
  font-size: 16px;
  line-height: 155%;
  letter-spacing: -0.01em;
  font-weight: 600;
}

.navbar {
  background: var(--colors-base-background, #ffffff);
  border-style: solid;
  border-color: var(--default-100, #dfe1e7);
  border-width: 0 0 1px 0;
  padding: 16px 20px;
  width: 100%;
  height: 73px;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
  justify-content: flex-start;
}

.nav-link {
  display: none;
}




/* .icon {
  display: none;
} */

.gallery {
  display: flex;
  flex-direction: column;
  gap: var(--layout-spacing-40px, 40px);
  align-items: center;
  justify-content: flex-start;
  padding: 40px 20px;
}

.title {
  display: flex;
  flex-direction: column;
  gap: var(--layout-spacing-16px, 16px);
  align-items: center;
  justify-content: center;
}

.inspiration-gallery {
  color: var(--colors-base-default-foreground, #000000);
  text-align: center;
  font-family: "InstrumentSans-Bold", sans-serif;
  font-size: 28px;
  line-height: 120%;
  font-weight: 700;
}

.try-these-to-look-at-how-ai-greeting-card-generator-works {
  color: var(--colors-base-text-paragraph, #666d80);
  text-align: center;
  font-family: "DmSans-Regular", sans-serif;
  font-size: 14px;
  line-height: 160%;
  font-weight: 400;
}

.images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

.frame-11, .frame-13, .frame-12, .frame-14, .frame-142, .frame-15, .frame-16, .frame-17, .frame-18, .frame-20, .frame-21, .frame-22, .frame-23 {
  background: var(--default-100, #dfe1e7);
  border-radius: var(--layout-radius-radius-2xl, 20px);
  width: 100%;
  max-width: 413px;
  height: 400px;
  overflow: hidden;
}

.frame-11 img, .frame-13 img, .frame-12 img, .frame-14 img, .frame-142 img, .frame-15 img, .frame-16 img, .frame-17 img, .frame-18 img, .frame-20 img, .frame-21 img, .frame-22 img, .frame-23 img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .create-image-manipulations-only-with-command {
    font-size: 36px;
  }

  .these-steps-outline-the-process-of-using-the-ai-image-generator-from-choosing-a-style-to-saving-or-sharing-the-final-artwork {
    font-size: 16px;
  }

  .nav-link {
    display: flex;
  }

  .icon {
    display: flex;
  }

  .frame-11, .frame-13, .frame-15 {
    height: 400px;
  }
}

@media (min-width: 1024px) {
  .header {
    padding: 80px 40px;
  }

  .frame-40943 {
    flex-direction: row;
  }



  .create-image-manipulations-only-with-command {
    text-align: center;
    font-size: 40px;
  }

  .these-steps-outline-the-process-of-using-the-ai-image-generator-from-choosing-a-style-to-saving-or-sharing-the-final-artwork {
    text-align: center;
  }

  .navbar {
    padding: 16px 80px;
  }

  .gallery {
    padding: 80px 40px;
  }

  .inspiration-gallery {
    font-size: 40px;
  }

  .try-these-to-look-at-how-ai-greeting-card-generator-works {
    font-size: 16px;
  }

  .images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}














.create-image-manipulations-only-with-command,
.these-steps-outline-the-process-of-using-the-ai-image-generator-from-choosing-a-style-to-saving-or-sharing-the-final-artwork {
  transition: transform 0.3s ease-in-out;
}

/* Hover animations */
.create-image-manipulations-only-with-command:hover {
  transform: translateY(-5px);
}

.these-steps-outline-the-process-of-using-the-ai-image-generator-from-choosing-a-style-to-saving-or-sharing-the-final-artwork:hover {
  transform: scale(1.02);
}

/* Smooth appearance animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.create-image-manipulations-only-with-command,
.these-steps-outline-the-process-of-using-the-ai-image-generator-from-choosing-a-style-to-saving-or-sharing-the-final-artwork {
  animation: fadeIn 1s ease-out forwards;
}

.these-steps-outline-the-process-of-using-the-ai-image-generator-from-choosing-a-style-to-saving-or-sharing-the-final-artwork {
  animation-delay: 0.1s;
}







.label2{
    outline: none;
    border-radius: 100px;
    height: 60px;
    border-color: #0179FF;

}

.label3{
  border:none;
  outline:none;
}















/* General styles */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Arial", sans-serif; /* Adjust font family as needed */
}

/* Navbar styles */
.navbar {
  background: var(--colors-base-background, #ffffff);
  border-bottom: 1px solid var(--default-100, #dfe1e7);
  padding: 16px 20px; /* Default padding */
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: flex-start;
}

.nav-link {
  display: none; /* Initially hidden on smaller screens */
}



.icon {
  display: none; /* Initially hidden on smaller screens */
}

@media (min-width: 768px) {
  .nav-link,
  .icon {
    display: flex; /* Show nav-links and icons on larger screens */
  }
}

@media (min-width: 1024px) {
  .navbar {
    padding: 16px 80px; /* Adjusted padding for larger screens */
  }
}

/* Header styles */
.header {
  background: var(--default-0, #f8fafb);
  padding: 40px 20px; /* Default padding */
  position: relative;
}

@media (min-width: 1024px) {
  .header {
    padding: 80px 40px; /* Adjusted padding for larger screens */
  }
}

/* Frames and gallery styles */
.gallery {
  display: flex;
  flex-direction: column;
  gap: 40px; /* Adjust gap between elements */
  align-items: center;
  justify-content: flex-start;
  padding: 40px 20px; /* Default padding */
}

.images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive grid layout */
  gap: 20px; /* Adjust gap between images */
}

.frame {
  background: var(--default-100, #dfe1e7);
  border-radius: 20px; /* Adjusted border radius */
  overflow: hidden;
  height: 400px; /* Default height */
}

@media (min-width: 1024px) {
  .gallery {
    padding: 80px 40px; /* Adjusted padding for larger screens */
  }

  .frame {
    height: 450px; /* Adjusted height for larger screens */
  }
}

/* Button styles */
.button {
  outline: none;
  text-decoration: none;
  background: var(--color-primary-300, #0179ff);
  color: #fff;
  cursor: pointer;
  border-radius: 100px;
  padding: 12px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none; /* Add this if you want to ensure no border */
  font-size: 16px; /* Adjust as needed */
  font-weight: bold; /* Adjust as needed */
  text-align: center;
  
}

.button:hover {
  background-color: #015ec4; /* Adjusted hover color */
}

/* Text and label styles */
.label {
  /* color: var(--default-700, #272835); */
  color:rgb(0, 0, 0);
  text-align: center;
  font-family: "Arial", sans-serif; /* Adjust font family as needed */
  font-size: 16px; /* Default font size */
  line-height: 1.5;
  
}

.label2 {
  color: var(--default-300, #191a1b);
  font-size: 14px; /* Default font size */
}

@media (min-width: 1024px) {
  .label {
    font-size: 18px; /* Adjusted font size for larger screens */
  }

  .label2 {
    font-size: 16px; /* Adjusted font size for larger screens */
  }
}

/* Hover animations */
.create-image-manipulations-only-with-command,
.these-steps-outline-the-process-of-using-the-ai-image-generator-from-choosing-a-style-to-saving-or-sharing-the-final-artwork {
  transition: transform 0.3s ease-in-out;
}

.create-image-manipulations-only-with-command:hover {
  transform: translateY(-10px); /* Adjust hover effect */
}

.these-steps-outline-the-process-of-using-the-ai-image-generator-from-choosing-a-style-to-saving-or-sharing-the-final-artwork:hover {
  transform: scale(1.02); /* Adjust hover effect */
}

/* Smooth appearance animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Additional animations */
.create-image-manipulations-only-with-command,
.these-steps-outline-the-process-of-using-the-ai-image-generator-from-choosing-a-style-to-saving-or-sharing-the-final-artwork {
  animation: fadeIn 1s ease-out forwards;
}

.these-steps-outline-the-process-of-using-the-ai-image-generator-from-choosing-a-style-to-saving-or-sharing-the-final-artwork {
  animation-delay: 0.1s; /* Delay animation */
}

