


/* Style for the hamburger icon */
.hamburger {
  cursor: pointer;
  display: none;
}

.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;
}


.tooltip ,.showTooltip {
  position: fixed;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 10px;
  border-radius: 5px;
  max-width: 200px;
  text-align: center;
  pointer-events: none;
  transform: translate(-0%, -50%);
  transition: opacity 0.3s;
}

.blurred {
  filter: blur(5px); /* Applies blur effect to the image */
}

img {
  object-fit: cover;

}
.zap-fast-icon {
  height: 36px;
  width: 36px;
  position: relative;
  min-height: 36px;
}


.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: var(--default-100);
  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: var(--gap-base);
}

.contact-us {
  margin: 0;
  position: relative;
  font-size: inherit;
  letter-spacing: -0.01em;
  line-height: 120%;
  font-weight: 600;
  font-family: inherit;
  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: var(--body-medium-semibold-size);
  letter-spacing: -0.01em;
  line-height: 160%;
  color: var(--colors-base-text-paragraph);
  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: 20px;
  position: relative;
  z-index: 1;
  font-weight: bold;
}

.footer-description {
  font-size: 16px;
  margin-bottom: 38px;
  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;
  }
}

.genai {
  margin: 0;
  position: relative;
  font-size: inherit;
  line-height: 150%;
  font-weight: 700;
  font-family: inherit;
  white-space: nowrap;
}
.logo,
.logo-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.logo {
  flex-direction: row;
  gap: 8px;
}
.logo-wrapper {
  flex-direction: column;
  padding: 6px 0 0;
}
.union-icon {
  align-self: stretch;
  width: 99px;
  position: relative;
  border-radius: 100px;
  max-height: 100%;
  display: none;
  min-height: 48px;
}
.chevron-left-icon {
  height: 16px;
  width: 16px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  display: none;
}
.label {
  position: relative;
  line-height: 22px;
  display: inline-block;
  min-width: 41px;
}
.button {
  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;
}
.chevron-left-icon1 {
  height: 20px;
  width: 20px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  display: none;
}
.label1 {
  position: relative;
  line-height: 22px;
  font-weight: 500;
  display: inline-block;
  min-width: 41px;
}
.button1 {
  border-radius: 100px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 9px 10px;
  gap: 8px;
}
.label2 {
  position: relative;
  line-height: 22px;
  font-weight: 500;
  display: inline-block;
  min-width: 47px;
}
.button2 {
  flex: 1;
  border-radius: 100px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 9px 10px;
  gap: 8px;
}
.label3 {
  position: relative;
  line-height: 155%;
  font-weight: 500;
}
.button3 {
  align-self: stretch;
  border-radius: 100px;
  display: none;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  gap: 8px;
}
.label4 {
  width: 55px;
  position: relative;
  line-height: 22px;
  font-weight: 500;
  display: inline-block;
  min-width: 55px;
}
.nav-link {
  width: 355px;
  border-radius: 100px;
  background-color: #f6f8fa;
  border: 1px solid #eceff3;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 2px 3px;
  gap: 24px;
  max-width: 100%;
}
.label5,
.nav-link-wrapper {
  font-family: "DM Sans";
  text-align: center;
}
.nav-link-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  font-size: 14px;
  color: #272835;
}
.label5 {
  position: relative;
  font-size: 15px;
  line-height: 155%;
  display: inline-block;
  color: #fff;
  min-width: 72px;
  white-space: nowrap;
}
.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: flex-start;
  justify-content: flex-start;
  gap: 8px;
}
.arrow-up-right {
  margin: 0;
  height: 24px;
  width: 24px;
  position: relative;
}

.button-parent{
  /* height: 0;
  width: 0; */
  
}

.button-parent,
.icon,
.navbar {
  display: flex;
  flex-direction: row;
  
}
.icon {
  height: 48px;
  width: 48px;
  border-radius: 100px;
  background-color: #0179ff;
  align-items: center;
  justify-content: center;
  z-index: 1;
  margin-left: 3px;
}
.button-parent,
.navbar {
  align-items: flex-start;
  justify-content: flex-start;
}

.navbar {
  height: 73px;
  display: flex;
  align-self: stretch;
  background-color: #fff;
  border-bottom: 1px solid #dfe1e7;
  box-sizing: border-box;
  justify-content: space-between;
  padding: 16px 51px 14px 80px;
  top: 0;
  z-index: 1000;
  position: sticky;
  gap: 20px;
  max-width: 100%;
  text-align: left;
  font-size: 24px;
  color: #0179ff;
  font-family: "Instrument Sans";
}
.image6 {
  width: 350px;
  height: 232px;
  position: relative;
  border-radius: 20px;
  background-color: #eceff3;
  overflow: hidden;
  flex-shrink: 0;
  display: none;
  max-width: 100%;
}
.revolutionize {
  font-family: "Instrument Serif";
  font-weight: 400;
}
.b {
  font-family: Lora;
}
.revolutionize-your-greetings {
  font-family: serif;
  margin: 0;
}
.revolutionize-your-greetings-container {
  margin: 0;
  align-self: stretch;
  position: relative;
  font-size: inherit;
  letter-spacing: 0.01em;
  font-family: "Averia Serif Libre";
}
.effortlessly-create-personaliz {
  margin: 0;
  width: 766px;
  position: relative;
  font-size: inherit;
  letter-spacing: 0.01em;
  font-weight: 400;
  font-family: inherit;
  display: inline-block;
  flex-shrink: 0;
  max-width: 100%;
}
.effortlessly-create-personaliz-wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  padding: 0 20px;
  box-sizing: border-box;
  max-width: 100%;
  text-align: center;
}
.text {
  flex: 1;
  position: relative;
  line-height: 155%;
  font-weight: 500;
}
.label6 {
  width: 300px;
  display: none;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.flash-icon {
  height: 24px;
  width: 24px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.label7 {
  width: calc(100% - 46px);
  border: 0;
  outline: 0;
  font-family: "DM Sans";
  font-size: 16px;
  background-color: transparent;
  height: 26px;
  flex: 1;
  position: relative;
  line-height: 160%;
  color: #818898;
  text-align: left;
  display: inline-block;
  min-width: 250px;
  max-width: calc(100% - 32px);
  padding: 0;
  display: inline-block;
}
.eye-icon {
  height: 24px;
  width: 24px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  object-fit: cover;
  display: none;
}
.input {
  align-self: stretch;
  border-radius: 100px;
  background-color: #f8fafb;
  border: 1px solid #dfe1e7;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: 9px 11px;
  gap: 8px;
  max-width: 100%;
}
.hint-text1 {
  flex: 1;
  position: relative;
  line-height: 155%;
}
.hint-text,
.text-input {
  justify-content: flex-start;
}
.hint-text {
  width: 300px;
  display: none;
  flex-direction: row;
  align-items: center;
  color: #818898;
  font-family: Goldman;
}
.text-input {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  min-width: 502px;
  max-width: 100%;
}
.label8 {
  position: relative;
  font-size: 16px;
  line-height: 25px;
  display: inline-block;
  font-family: "DM Sans";
  color: #fff;
  text-align: center;
  min-width: 74px;
}
.label-howtouse {
  position: relative;
  font-size: 16px;
  line-height: 25px;
  display: inline-block;
  font-family: "DM Sans";
  color: #000000;
  text-align: center;
  min-width: 74px;
}
.chevron-right-icon6 {
  height: 20px;
  width: 20px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.button-use {
  cursor: pointer;
  border: 0;
  padding: 11.5px 24px;
  background-color: #ffffff;
  box-shadow: 0 1px 2px rgba(13, 13, 18, 0.06);
  border-radius: 100px;
  align-items: center;
  gap: 7px;
  display: none;
}

.button6,
.form,
.form-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.button6 {
  cursor: pointer;
  border: 0;
  padding: 11.5px 24px;
  background-color: #0179ff;
  box-shadow: 0 1px 2px rgba(13, 13, 18, 0.06);
  border-radius: 100px;
  align-items: center;
  gap: 7px;
}
.form,
.form-wrapper {
  box-sizing: border-box;
  max-width: 100%; /* Keep full width on all screen sizes */
}

.form-wrapper {
  display: flex;
  flex-direction: column; /* Stack content vertically */
  justify-content: center; /* Center the form within the wrapper */
  align-items: center;     /* Horizontally center */
  width: 100%;             /* Full width */
  max-width: 1280px;       /* Limit the max width */
  padding: 0 20px;
  font-size: 14px;
  color: #0d0d12;
  font-family: Lora;
  margin: 0 auto;          /* Center the entire form-wrapper on the page */
}

.form {
  width: 100%;             /* Full width responsiveness */
  max-width: 986px;        /* Limit the width */
  border-radius: 100px;
  background-color: #eceff3;
  display: flex;
  align-items: center;
  justify-content: center; /* Ensure content within the form is centered */
  flex-wrap: wrap;         /* Wrap content for smaller screens */
  padding: 8px 20px;
  gap: 12px;
}

/* For medium screens (tablets, smaller laptops) */
@media screen and (max-width: 1024px) {
  .form {
    padding: 8px 15px; /* Reduce padding for smaller screens */
    max-width: 90%; /* Adjust max width for medium devices */
  }
  
  .form-wrapper {
    padding: 0 15px;
  }
}

/* For small screens (mobile phones) */
@media screen and (max-width: 768px) {
  .form {
    padding: 8px 10px; /* Further reduce padding */
    width: 100%; /* Take up full width on small devices */
   
  }

  .form-wrapper {
    /* padding: 0 10px; */
    font-size: 13px;
    width: 100%;
  }
  .image-container{
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .hero-content{
    width: 100%;
    margin: 0;
    padding: 0px;
  }
  .image-container-parent{
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .revolutionize-your-greetings-w-parent{
    padding: 0;
    margin: 0;
  }
}

/* For very small screens (small mobile devices) */
@media screen and (max-width: 450px) {
  .form {
    padding: 8px 5px; /* Minimize padding */
    max-width: 100%; /* Ensure it fits on very small screens */
  }

  .form-wrapper {
    padding: 0 5px;
    font-size: 12px; 
    width: 100%;
  }

  .image-container{
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .hero-content{
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .image-container-parent{
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .revolutionize-your-greetings-w-parent{
    padding: 0;
    margin: 0;
  }
}

.a-magical-forest,
.image5-icon {
  align-self: stretch;
  position: relative;
}
.image5-icon {
  height: 456px;
  border-radius: 20px;
  max-width: 100%;
  overflow: hidden;
  flex-shrink: 0;
  object-fit: cover;
}
.a-magical-forest {
  margin: 0;
  font-size: inherit;
  line-height: 150%;
  font-weight: 700;
  font-family: inherit;
}
.as-the-morning {
  width: 100%;
  position: relative;
  font-size: 14px;
  line-height: 155%;
  color: #666d80;
  display: inline-block;
}

/* .image-5 {
  width: 334px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
  max-width: 100%;
} */
.image-5 {
  width: 350x;
  border-radius: 20px;
  align-items: flex-end;
  padding: 0 0 12px;
  box-sizing: border-box;
  gap: 16px;
  min-width: 350px;
  max-height: 456px;
}
.mask-group-icon {
  width: 100%;
  height: 100%;
  position: absolute;
  margin: 0 !important;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  max-width: 100%;
  overflow: hidden;
  max-height: 100%;
}
.m {
  position: relative;
  line-height: 120%;
  display: inline-block;
  min-width: 114px;
  z-index: 1;
}
.image-generated-successfully {
  align-self: stretch;
  position: relative;
  font-size: 18px;
  line-height: 10%;
  color: #666d80;
  z-index: 1;
}
.image1,
.image1-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-sizing: border-box;
}
.image1 {
  align-self: stretch;
  height: 370px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
  justify-content: flex-end;
  padding: 259px 6px 53px 373px;
  position: relative;
}
.image1-wrapper {
  flex: 1;
  justify-content: flex-start;
  padding: 68px 0 0;
  min-width: 338px;
  max-width: 100%;
}
.image2-icon,
.image3-icon,
.image3-icon1 {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  object-fit: cover;
}
.image2-icon {
  height: 456px;
  width: 350px;
  max-height: 100%;
  max-width: 100%;
  object-fit: cover;
}
.image3-icon,
.image3-icon1 {
  height: 232px;
}
.image3-icon {
  width: 160px;
  flex-shrink: 0;
}
.image3-icon1 {
  flex: 1;
  max-width: 100%;
}
.image3-wrapper {
  align-self: stretch;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 0 21px 0 25px;
}
.arrow-up-right-wrapper {
  height: 56px;
  width: 56px;
  border-radius: 100px;
  background-color: #0179ff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 10px;
  box-sizing: border-box;
}
.label9 {
  position: relative;
  font-size: 16px;
  line-height: 155%;
  display: inline-block;
  font-family: "DM Sans";
  color: #fff;
  text-align: center;
  min-width: 103px;
}
.button7,
.frame-group {
  flex-direction: row;

  gap: 5px;
}
.button7 {
  cursor: pointer;
  border: 0;
  padding: 10.5px 23px;
  background-color: #0179ff;
  flex: 1;
  box-shadow: 0 1px 2px rgba(13, 13, 18, 0.06);
  border-radius: 100px;
  display: flex;
  justify-content: center;
}
.frame-group {
  align-self: center;
}
.frame-group,
.frame-parent,
.image3-parent {
  display: flex;
  justify-content: flex-start;
}
.frame-parent {
  flex: 1;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
  min-width: 134px;
}
.image3-parent {
  align-self: stretch;
  width: 100%;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}
.image2-parent {
  width: 351px;
  flex-direction: column;
  justify-content: flex-start;
  gap: 30px;
  min-width: 371px;

  
}

.image-container,
.image-grid,
.image2-parent {
  display: flex;
  /* align-items: center; */
  max-width: 100%;
}
.image-grid {
  display: flex;
  flex-wrap: wrap; /* Allow the grid to wrap on smaller screens */
  justify-content: flex-start;
  gap: 30px;
  width: 100%; /* Use full width to make it responsive */
  font-size: 48px;
}

/* For medium screens (tablets, smaller laptops) */
@media screen and (max-width: 1024px) {
  .image-grid {
    gap: 20px; /* Reduce the gap between images */
    font-size: 36px; /* Scale down font size */
  }
}

/* For small screens (mobile phones) */
@media screen and (max-width: 768px) {
  .image-grid {
    flex-direction: column; /* Stack images vertically on small screens */
    gap: 15px; /* Further reduce the gap */
    font-size: 28px; /* Adjust font size */
  }
}

/* For very small screens (small mobile devices) */
@media screen and (max-width: 450px) {
  .image-grid {
    gap: 10px;
    font-size: 24px;
  }
}

.image-5-parent,
.image-container {
  align-self: stretch;
  width: 100%;
}
.image-5-parent {
  flex-direction: row;
  justify-content: center;
  width: 100%;
  gap: 30px;
  font-family: "DM Sans";
}
.image-container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 34px;
  max-width: 3024px;
}
.what-do-you {
  margin: 0;
  align-self: stretch;
  position: relative;
  font-size: inherit;
  letter-spacing: -0.02em;
  line-height: 37px;
  font-weight: 600;
  font-family: inherit;
  color: #000;
}
.experience-the-power {
  position: relative;
  line-height: 160%;
}
.value-proposition-answer,
.value-proposition-content {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.value-proposition-answer {
  flex-direction: row;
  font-size: 16px;
  color: #666d80;
  font-family: "DM Sans";
}
.value-proposition-content {
  width: 328px;
  flex-direction: column;
  gap: 16px;
  max-width: 100%;
}
.value-proposition {
  width: 1280px;
  flex-direction: row;
  justify-content: center;
  padding: 0 20px;
  box-sizing: border-box;
  text-align: center;
  font-size: 40px;
}
.hero-content,
.image-container-parent,
.value-proposition {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  max-width: 100%;
}
/* Add specific styling for images to avoid them getting too big */

.image-container-parent {
   display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 96px;
}
.hero-content {
  width: 80%; /* Use full width for responsiveness */
  flex-direction: row;
  justify-content: center;
  padding: 0 20px 6px; 
  box-sizing: border-box;
  text-align: left;
  font-size: 24px;
  margin-right: 10%;
  margin-left: 10%;
}
.image2-icon{
  width: 100%;
}


/* For medium screens (tablets, smaller laptops) */
@media screen and (max-width: 1024px) {
  .hero-content {
    padding: 0 15px 6px; /* Further reduce padding */
    font-size: 20px; /* Slightly reduce font size */
  }
}

/* For small screens (mobile phones) */
@media screen and (max-width: 768px) {
  .hero-content {
    flex-direction: column; /* Stack content vertically */
    justify-content: center; /* Center the content */
    padding: 0 10px 6px; /* Minimize padding */
    font-size: 18px; /* Further reduce font size */
  }

  .image3-parent{
    display: flex;
    flex-direction: row;
  }
  
}

/* For very small screens (small mobile devices) */
@media screen and (max-width: 450px) {
  .hero-content {
    padding: 0 5px 6px;
    font-size: 16px; /* Make text readable on smaller devices */
  }
  .icon{
    visibility: hidden;
  }
  .image3-parent{
  display: flex;
  flex-direction: row;
}

}

.ai-powered-creativity {
  margin: 0;
  position: relative;
  font-size: inherit;
  line-height: 150%;
  font-weight: 700;
  font-family: inherit;
  width: 100%;
}
.unleash-the-power {
  align-self: stretch;
  position: relative;
  font-size: 16px;
  line-height: 160%;
  color: #666d80;
  text-align: left;
  width: 100%;
}
.ai-powered-creativity-parent {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
  min-width: 297px;
}
.b2 {
  position: relative;
  line-height: 28px;
  display: inline-block;
  min-width: 34px;
}
.frame-child,
.frame-item,
.wrapper {
  position: absolute;
  top: 0;
  overflow: hidden;
}
.wrapper {
  left: 133px;
  border-radius: 10px;
  background-color: #0179ff;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 11px 7px 11px 9px;
}
.frame-child,
.frame-item {
  left: 0;
  border-radius: 24px;
  width: 120px;
  height: 120px;
  object-fit: cover;
}
.frame-item {
  top: 80px;
  left: 83px;
  border-radius: 16px;
  width: 80px;
  height: 80px;
  z-index: 1;
}
.frame-div {
  position: absolute;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  width: 163px;
}
.frame-container {
  align-self: stretch;
  height: 160px;
  position: relative;
}
.card-feature-inner {
  width: 183px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 9px 0 0;
  box-sizing: border-box;
  min-width: 183px;
  text-align: left;
  font-size: 18px;
  color: #fff;
}
.card-feature-child {
  height: 220px;
  width: 100%;
  position: relative;
  background: radial-gradient(
    50% 50%at 50% 50%,
    rgba(236, 239, 243, 0),
    #eceff3
  );
  display: none;
}
.card-feature,
.easy-customization-parent {
  flex: 1;
  display: flex;
  align-items: flex-start;
}
.card-feature {
  border-radius: 16px;
  background-color: #eceff3;
  flex-direction: row;
  justify-content: space-between;
  padding: 21px 54px 21px 32px;
  box-sizing: border-box;
  min-width: 455px;
  max-width: 100%;
  gap: 20px;
}
.easy-customization-parent {
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  min-width: 193px;
}
.image-icon {
  position: absolute;
  top: 42px;
  left: 0;
  border-radius: 20px;
  width: 183px;
  height: 183px;
  object-fit: cover;
}
.frame-inner {
  position: absolute;
  top: 0;
  left: 57px;
  border-radius: 14px;
  width: 70px;
  height: 70px;
  overflow: hidden;
  z-index: 1;
}
.image-parent {
  height: 100%;
  width: 100%;
  position: absolute;
  margin: 0 !important;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.frame-wrapper {
  align-self: stretch;
  height: 225px;
  flex-direction: row;
  position: relative;
}
.card-feature-inner1,
.card-feature1,
.feature-cards,
.frame-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.card-feature-inner1 {
  height: 152px;
  width: 183px;
  flex-direction: column;
  padding: 18px 0 0;
  box-sizing: border-box;
  min-width: 183px;
}
.card-feature1,
.feature-cards {
  flex-direction: row;
  max-width: 100%;
}
.card-feature1 {
  width: 560px;
  border-radius: 16px;
  background-color: #eceff3;
  overflow: hidden;
  flex-shrink: 0;
  padding: 32px 0 36px 32px;
  box-sizing: border-box;
  gap: 48px;
  min-width: 560px;
}
.feature-cards {
  align-self: stretch;
  gap: 20px;
}
.from-your-screen {
  width: 297px;
  position: relative;
  font-size: 16px;
  line-height: 160%;
  color: #666d80;
  display: inline-block;
}
.print-and-delivery-parent {
  width: 321px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
  min-width: 321px;
  max-width: 100%;
  flex-shrink: 0;
}
.frame-icon {
  position: absolute;
  top: 32px;
  left: 35px;
  border-radius: 40px 0 40px 40px;
  width: 200px;
  height: 200px;
  overflow: hidden;
  object-fit: cover;
}
.palette-icon {
  height: 24px;
  width: 24px;
  position: relative;
  min-height: 24px;
}
.palette-parent {
  position: absolute;
  top: 0;
  left: 0;
  backdrop-filter: blur(10px);
  border-radius: 14px;
  background-color: rgba(223, 225, 231, 0.4);
  border: 1px solid #9acaff;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 21px 22px;
  gap: 10px;
  z-index: 1;
}
.frame-parent1 {
  align-self: stretch;
  height: 232px;
  position: relative;
}
.card-feature-inner2,
.card-feature2 {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  box-sizing: border-box;
}
.card-feature-inner2 {
  height: 126px;
  width: 235px;
  flex-direction: column;
  padding: 8px 0 0;
  min-width: 235px;
  margin-left: -15px;
}
.card-feature2 {
  width: 560px;
  border-radius: 16px;
  background-color: #eceff3;
  overflow: hidden;
  flex-direction: row;
  padding: 32px;
  min-width: 560px;
  min-height: 220px;
  row-gap: 20px;
  max-width: 100%;
}
.card-feature-inner3,
.inspiration-gallery-parent {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.inspiration-gallery-parent {
  align-self: stretch;
  gap: 12px;
}
.card-feature-inner3 {
  width: 100%;
  padding: 4px 0 0;
  box-sizing: border-box;
  /* min-width: 297px; */
}
.frame-child1,
.frame-child2 {
  position: absolute;
  top: 10px;
  left: 0;
  border-radius: 24px;
  width: 120px;
  height: 120px;
  overflow: hidden;
  object-fit: cover;
}
.frame-child2 {
  top: 0;
  left: 103px;
  border-radius: 16px;
  width: 80px;
  height: 80px;
  z-index: 1;
}
.frame-parent2 {
  position: absolute;
  top: 30px;
  left: 0;
  width: 183px;
  height: 130px;
}
.save-01-parent {
  position: absolute;
  top: 0;
  right: 40px;
  backdrop-filter: blur(4px);
  border-radius: 10px;
  background-color: rgba(181, 255, 0, 0.4);
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 12px 20px;
  gap: 10px;
  z-index: 2;
}
.image {
  height: 160px;
  width: 183px;
  position: relative;
  min-width: 183px;
}
.card-feature3 {
  flex: 1;
  border-radius: 16px;
  background-color: #eceff3;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  padding: 30px 54px 30px 32px;
  box-sizing: border-box;
  min-width: 455px;
  max-width: 100%;
  gap: 20px;
  text-align: center;
}
.feature-cards1 {
  align-self: stretch;
  flex-direction: row;
  gap: 20px;
  text-align: left;
}
.feature-cards1,
.features,
.features-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 3024px;
  width: 100%;
}
.features {
  flex: 1;
  flex-direction: column;
  gap: 20px;
}

.features-content-wrapper{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

/* .features-grid {
  align-self: stretch;
  flex-direction: row;
  padding: 0 0 70px;
  box-sizing: border-box;
  font-size: 24px;
  overflow: hidden;
} */
.how-ai-image {
  margin: 0;
  position: relative;
  font-size: inherit;
  line-height: 120%;
  font-weight: 600;
  font-family: inherit;
}
.these-steps-outline-container {
  width: 481px;
  position: relative;
  line-height: 160%;
  display: inline-block;
}
.how-it-works-content,
.how-it-works-description {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.how-it-works-description {
  flex-direction: row;
  padding: 0 68px;
  font-size: 16px;
  color: #666d80;
  font-family: "DM Sans";
}
.how-it-works-content {
  flex-direction: column;
  gap: 16px;
  max-width: 100%;
}
.how-it-works-content-wrapper {
  align-self: stretch;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  padding: 0 20px 50px;
  box-sizing: border-box;
  max-width: 100%;
  font-size: 40px;
  margin-top: 50px;
  font-family: "Instrument Sans";
}
.prompt {
  position: relative;
  line-height: 140%;
  display: inline-block;
  min-width: 8px;
}
.card-top,
.empty-prompt {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.empty-prompt {
  width: 50px;
  height: 50px;
  border-radius: 100px;
  background-color: #0179ff;
  flex-direction: row;
  padding: 11px 20px;
  box-sizing: border-box;
}
.card-top {
  flex-direction: column;
  padding: 8px 0 0;
}
.enter-yoyr-text {
  position: relative;
  font-size: 16px;
  line-height: 160%;
  color: #666d80;
}
.card,
.generate-an-image-parent {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.generate-an-image-parent {
  flex-direction: column;
  gap: 4px;
  font-size: 24px;
  color: #000;
}
.card {
  width: 555px;
  border-radius: 16px;
  background-color: #f8fafb;
  border: 1px solid #9acaff;
  box-sizing: border-box;
  flex-direction: row;
  padding: 18px 20px;
  gap: 20px;
  max-width: 100%;
  z-index: 1;
}
.img-icon {
  height: 560px;
  width: 560px;
  position: absolute;
  margin: 0 !important;
  right: -98px;
  bottom: -298px;
}
.second-prompt {
  position: relative;
  line-height: 140%;
  display: inline-block;
  min-width: 12px;
}
.upload-prompt {
  width: 50px;
  height: 50px;
  border-radius: 100px;
  background-color: #0179ff;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 11px 19px;
  box-sizing: border-box;
}
.upload-your-image {
  margin: 0;
  position: relative;
  font-size: inherit;
  line-height: 150%;
  font-weight: 700;
  font-family: inherit;
  display: inline-block;
  max-width: 100%;
}
.upload-your-image-or-with-comm-parent {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 4px;
  max-width: 100%;
  font-size: 24px;
  color: #000;
}
.card1 {
  border-radius: 16px;
  background-color: #f8fafb;
  border: 1px solid #9acaff;
  box-sizing: border-box;
  justify-content: flex-start;
  padding: 18px 19px;
  gap: 20px;
  z-index: 1;
}
.card1,
.second-card,
.second-card-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  max-width: 100%;
}
.second-card {
  justify-content: flex-start;
  position: relative;
}
.second-card-container {
  align-self: stretch;
  justify-content: flex-end;
}
.card-container,
.steps-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 100%;
}
.card-container {
  align-self: stretch;
  justify-content: flex-start;
  gap: 30px;
}
.steps-content {
  width: 822px;
  justify-content: flex-end;
  padding: 0 0 20px;
  box-sizing: border-box;
}
.empty-placeholders-icon,
.empty-placeholders-icon1 {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 15px;
  width: 120px;
  height: 120px;
  overflow: hidden;
  object-fit: cover;
}
.empty-placeholders-icon1 {
  top: 110px;
  left: 112px;
  z-index: 1;
}
.third-card-container {
  height: 230px;
  width: 232px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
}
.steps-content-parent {
  width: 1223px;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  max-width: 100%;
  gap: 20px;
  text-align: left;
  color: #fff;
}
.mask-group-icon1 {
  height: 100%;
  width: 100%;
  position: absolute;
  margin: 0 !important;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.steps {
  position: relative;
  line-height: 140%;
  display: inline-block;
  min-width: 74px;
}
.to-generate-e-greeting-container {
  align-self: stretch;
  position: relative;
  font-size: 12px;
  line-height: 140%;
}
.generate-button-wrapper,
.steps-title {
  display: flex;
  box-sizing: border-box;
  z-index: 1;
}
.steps-title {
  margin-bottom: -3px;
  width: 107.1px;
  backdrop-filter: blur(5.41px);
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.4);
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 12px 16px;
  min-width: 107.1px;
}
.generate-button-wrapper {
  height: 56px;
  width: 56px;
  border-radius: 100px;
  background-color: #0179ff;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.label10 {
  position: relative;
  font-size: 16px;
  line-height: 155%;
  display: inline-block;
  font-family: "DM Sans";
  color: #fff;
  text-align: center;
  min-width: 79px;
}
.button8,
.image11 {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}
.button8 {
  cursor: pointer;
  border: 0;
  padding: 15.5px 23px;
  background-color: #0179ff;
  box-shadow: 0 1px 2px rgba(13, 13, 18, 0.06);
  border-radius: 100px;
  align-items: flex-start;
  gap: 8px;
  z-index: 1;
}
.image11 {
  border-radius: 10.81px;
  overflow: hidden;
  align-items: flex-end;
  padding: 100px 0 0 11px;
  box-sizing: border-box;
  position: relative;
  gap: 17.9px;
  min-width: 317px;
}
.third-prompt {
  position: relative;
  line-height: 140%;
  display: inline-block;
  min-width: 13px;
}
.card-steps-container,
.parameters-prompt {
  display: flex;
  align-items: flex-start;
  box-sizing: border-box;
}
.parameters-prompt {
  width: 50px;
  height: 50px;
  border-radius: 100px;
  background-color: #0179ff;
  flex-direction: row;
  justify-content: flex-start;
  padding: 11px 18px;
}
.card-steps-container {
  width: 800px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 0 26px;
  min-width: 800px;
  max-width: 100%;
}
.steps-image-container {
  /* align-self: stretch; */
  display: flex;
  flex-direction: row;
  align-items: center;
  /* justify-content: space-between; */
  max-width: 100%;
  gap: 20px;
  text-align: left;
  color: #fff;
}
.features-content,
.features-content-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  max-width: 100%;
}
.features-content {
  flex: 1;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
}
.features-content-wrapper {
  align-self: stretch;
  flex-direction: row;
  justify-content: flex-end;
  padding: 0 80px 46px;
  box-sizing: border-box;
  font-size: 20px;
  font-family: "DM Sans";
}
.testimonials-from-satisfied-container {
  margin: 0;
  position: relative;
  font-size: inherit;
  line-height: 120%;
  font-weight: 600;
  font-family: inherit;
  display: inline-block;
  width: 100%;
  text-align: center;
}
.take-a-look {
  align-self: stretch;
  position: relative;
  line-height: 160%;
  width: 100%;
  text-align: center;
}
.testimonials-description,
.testimonials-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 100%;
}
.testimonials-description {
  flex: 1;
  flex-direction: column;
  align-content: center ;
  padding: 9px 0 0;
  box-sizing: border-box;
  min-width: 261px;
  font-size: 16px;
  color: #666d80;
  font-family: "DM Sans";
}
.testimonials-header {
  width: 100%;
  max-width: 788px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.testimonials-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.testimonials-from-satisfied-container {
  margin-bottom: 10px;
}

.revolutionize-your-greetings {
  margin: 0;
}

.testimonials-description {
  max-width: 100%;
}

.take-a-look {
  margin-top: 10px;
}

@media (max-width: 600px) {
  .testimonials-header {
    padding: 10px;
  }
}
.image-icon1,
.sarah-review-child {
  position: relative;
  display: none;
  max-width: 100%;
}
.image-icon1 {
  height: 550px;
  width: 550px;
  object-fit: cover;
}
.sarah-review-child {
  width: 407px;
  height: 359px;
  background: linear-gradient(180deg, rgba(137, 137, 137, 0), #2c2c2c 83%);
}
.im-amazed-by,
.sarah-johnson- {
  position: relative;
  font-family: "DM Sans";
  color: #fff;
  text-align: left;
  display: inline-block;
  z-index: 2;
}
.sarah-johnson- {
  bottom: 30px;
  margin: 0;
  height: 36px;
  font-size: 24px;
  line-height: 150%;
  font-weight: 700;
}
.im-amazed-by {
  width: 288px;
  font-size: 16px;
  line-height: 160%;
  font-weight: 500;
}
.sarah-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
}
.label11 {
  position: relative;
  font-size: 16px;
  line-height: 25px;
  display: inline-block;
  font-family: "DM Sans";
  color: #fff;
  text-align: center;
  min-width: 55px;
}
.arrow-up-right-icon {
  width: 20px;
  height: 20px;
  position: relative;
}
.arrow-up-right-container,
.button9 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 2.5px 0 0;
}
.button9 {
  align-self: stretch;
  box-shadow: 0 1px 2px rgba(13, 13, 18, 0.06);
  border-radius: 100px;
  background-color: #0179ff;
  flex-direction: row;
  justify-content: space-between;
  padding: 13.5px 24px;
  gap: 20px;
  z-index: 2;
}

.card4,
.sarah-content,
.sarah-review {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.sarah-review {
  flex: 1;
  /* background: linear-gradient(180deg, rgba(137, 137, 137, 0), #2c2c2c 83%); */
  flex-direction: column;
  padding: 111px 5px 20px 6px;
  box-sizing: border-box;
  gap: 24px;
  max-width: 100%;
  z-index: 1;
}
.card4,
.sarah-content {
  flex-shrink: 0;
  flex-direction: row;
}
.sarah-content {
  margin-left: -72px;
  width: 550px;
  padding: 191px 71px 0 72px;
  box-sizing: border-box;
  background-image: url(./public/image1@2x.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  max-width: 136%;
}
.card4 {
  width: 406px;
  border-radius: 24px;
  background-color: #fff;
  overflow: hidden;
  max-width: 100%;
}
.david-review-child,
.image-icon2 {
  position: relative;
  display: none;
  max-width: 100%;
}
.image-icon2 {
  height: 878.5px;
  width: 406px;
  object-fit: cover;
}
.david-review-child {
  width: 407px;
  height: 383px;
  background: linear-gradient(180deg, rgba(137, 137, 137, 0), #2c2c2c 83%);
}
.ai-image-generator,
.david-lee-container {
  position: relative;
  font-family: "DM Sans";
  color: #fff;
  text-align: left;
  z-index: 2;
  padding-top: 20px;
}
.david-lee-container {
  margin: 0;
  font-size: 24px;
  line-height: 150%;
  font-weight: 700;
}
.ai-image-generator {
  align-self: stretch;
  font-size: 16px;
  line-height: 160%;
  font-weight: 500;
}
.david-review {
  /* flex: 1; */
  display: flex;
  /* background: linear-gradient(180deg, rgba(137, 137, 137, 0), #2c2c2c 83%); */
  flex-direction: column;
  align-items: flex-start;
  /* padding: 99px 20px 20px; */
  padding: 0px 10px 20px 10px;
  margin-bottom: 10px;
  box-sizing: border-box;
  gap: 24px;
  z-index: 1;
}
.card5,
.david-content,
.david-review,
.second-testimonial {
  display: flex;
  justify-content: flex-start;
  max-width: 100%;
}
.david-content {
  
  margin-top: -97.3px;
  flex: 1;
  flex-direction: row;
  align-items: flex-end;
  padding: 231px 0 231.2px;
  box-sizing: border-box;
  background-image: url(./public/image6@2x.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  min-height: 879px;
  flex-shrink: 0;
}
.card5,
.second-testimonial {
  align-items: flex-start;
}
.card5 {
  align-self: stretch;
  height: 550px;
  width: 406px;
  border-radius: 24px;
  background-color: #fff;
  overflow: hidden;
  flex-shrink: 0;
  flex-direction: row;
}
.second-testimonial {
  /* flex: 1; */
  flex-direction: column;
  padding: 0 0 100px;
  box-sizing: border-box;
  min-width: 264px;
  min-height: 650px;
}
.image-icon3,
.maria-rodriguez- {
  position: relative;
  max-width: 100%;
}
.image-icon3 {
  height: 552px;
  width: 414px;
  object-fit: cover;
  display: none;
}
.maria-rodriguez- {
  margin: 0;
  height: 36px;
  font-size: 24px;
  line-height: 150%;
  font-weight: 700;
  font-family: "DM Sans";
  color: #fff;
  text-align: left;
  display: inline-block;
  z-index: 2;
}
.maria-details {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
  max-width: 100%;
}
.maria-card,
.maria-info,
.maria-review {
  display: flex;
  align-items: flex-start;
  box-sizing: border-box;
  max-width: 100%;
}
.maria-info {
  flex: 1;
  /* background: linear-gradient(180deg, rgba(137, 137, 137, 0), #2c2c2c 83%); */
  flex-direction: column;
  justify-content: flex-start;
  padding: 111px 20px 20px;
  gap: 24px;
  z-index: 1;
}
.maria-card,
.maria-review {
  flex-direction: row;
}
.maria-review {
  /* margin-left: -7px;
  flex: 1; */
  justify-content: flex-start;
  padding: 191px 0 2px 7px;
  background-image: url(./public/image6@2x.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  flex-shrink: 0;
}
.maria-card {
  /* align-self: stretch; */
  justify-content: flex-end;
  padding: 0 1px 0 0;
}
.dot-items,
.dot-items1 {
  height: 10px;
  width: 36px;
  position: relative;
  border-radius: 100px;
  background-color: #0179ff;
}
.dot-items1 {
  width: 10px;
  background-color: #c1c7d0;
}
.dots-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 21px 0 0;
}
.label14 {
  position: relative;
  font-size: 16px;
  line-height: 25px;
  display: inline-block;
  font-family: "DM Sans";
  color: #000;
  text-align: center;
  min-width: 37px;
}
.chevron-right-icon9 {
  width: 20px;
  height: 20px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.button12,
.navigation-dots {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
}
.button12 {
  cursor: pointer;
  border: 1px solid #c1c7d0;
  padding: 12px 23px;
  background-color: transparent;
  filter: drop-shadow(0 1px 2px rgba(13, 13, 18, 0.06));
  border-radius: 100px;
  gap: 8px;
}
.navigation-dots {
  gap: 24px;
}
.first-testimonial,
.third-testimonial {
  /* flex: 1; */
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  max-width: 100%;
}
.third-testimonial {
  flex-direction: column;
  gap: 140px;
  min-width: 265px;
}
.first-testimonial {
  margin: 0;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-end;
  gap: 30px;
}
.testimonial-cards,
.testimonials-header-parent {
  align-self: center;
  display: flex;

  max-width: 100%;
}
.testimonial-cards {
  flex-direction: row;
  padding: 0 0 0 1px;
  box-sizing: border-box;
}
.testimonials-header-parent {
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.contact-us-to-container {
  height: 52px;
  position: relative;
  line-height: 160%;
  display: inline-block;
}
.contact,
.footer-content {
  display: flex;
  align-items: flex-start;
}
.contact {
  align-self: stretch;
  flex-direction: row;
  justify-content: center;
  padding: 0 21px 0 20px;
  font-size: 16px;
  color: #666d80;
  font-family: "DM Sans";
}
.footer-content {
  width: 80%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  max-width: 100%;
}
.footer-call-to-action {
  align-self: stretch;
  flex-direction: row;
  justify-content: center;
  padding: 0 20px;
  box-sizing: border-box;
  text-align: center;
  align-items: center;
}
.footer-call-to-action,
/* Ensure the testimonials container takes full width and aligns properly */
.testimonials-container {
  display: flex;
  /* flex: 1;                     */
  flex-direction: column;     
  justify-content: center;  /* Start content from the top */
  gap: 125px;                    /* Maintain spacing between elements */
  max-width: 100%;              /* Ensure it doesn't overflow */
  margin: 0 auto;               /* Center the container */
  padding: 0 20px;              /* Add padding for spacing */
}

/* Main testimonials section */
.testimonials {
  display: flex;
  align-self: stretch;          /* Stretch across the available space */
  flex-direction: row;          /* Keep the testimonials in a row */
  justify-content: flex-end;    /* Align the content to the right */
  padding: 0 80px 16px;         /* Adjust padding for consistent spacing */
  box-sizing: border-box;
  text-align: left;
  font-size: 40px;              /* Large font size for headings */
  width: 100%;                  /* Full width */
  max-width: 1680px;            /* Limit the width on larger screens */
  margin: 0 auto;               /* Center the testimonials section */
}

/* Responsive adjustments for medium screens */
@media screen and (max-width: 1024px) {
  .testimonials {
    padding: 0 40px 16px;       /* Reduce padding for smaller screens */
    font-size: 32px;            /* Adjust font size */
  }

  
}

@media screen and (max-width: 1300px) and (min-width: 1130px){
  .image-parent{
    width: 0;
    height: 0;
  }
   
  .third-card-container{
    width: 0;
    height: 0;
  }

  .mask-group-icon1{
    width: 0;
    height: 0;
  }
  
  .image11{
    width: 0;
    height: 0;
    display: none;
  }

 .steps-image-container{
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
 }

  /* .img-icon{
    height: 0;
    width: 0;
  } */


}

/* Responsive adjustments for small screens */
@media screen and (max-width: 768px) {
 
  .testimonials {      /* Further reduce padding */
    font-size: 28px;            /* Adjust font size for readability */
    flex-direction: column;     /* Stack the testimonials vertically */
    justify-content: center;    /* Center the content on small screens */
  }

  .ai-image-generator {
    display: flex;
    flex-direction: row;
    font-size: 14px;
    /* line-height: 10%;
    font-weight: 500; */
  }
  
  .david-lee-container{
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
  }

  .david-review{
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
  }

  .footer-call-to-action{
    padding-bottom: 100px;
  }

  .inspiration-gallery-parent{
    display: flex;
    /* background-color: rgba(0, 0, 0, 0.5); */
    flex-direction: column;
    justify-content: flex-start;
    padding-bottom: 149px;
    margin: 0;
  }

  .testimonials-container {
    display: flex;
    /* flex: 1;                     */
    align-items: center;
    flex-direction: column;     
    justify-content: center;  /* Start content from the top */                   /* Maintain spacing between elements */
    width: 100%;              /* Ensure it doesn't overflow */
    margin: 0 auto;               /* Center the container */
             /* Add padding for spacing */
  }
  
}

.rectangle-icon {
  position: absolute;
  top: -1px;
  left: -0.3px;
  border-radius: 24px;
  width: 386.8px;
  height: 121px;
}
.zap-fast-icon1 {
  height: 60px;
  width: 60px;
  position: relative;
}
.imazai {
  flex: 1;
  position: relative;
  line-height: 150%;
}
.logo-imazai {
  position: absolute;
  top: 30px;
  left: calc(50% - 151.5px);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 10.3px;
}
.vector-parent {
  width: 368px;
  height: 120px;
  position: relative;
  display: none;
  max-width: 100%;
  z-index: 0;
}
.mask-group-icon2,
.shape-footer-child {
  width: 100%;
  height: 100%;
  position: absolute;
  margin: 0 !important;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  max-width: 100%; /* Image will not exceed its container width */
  max-height: 100%; /* Image will not exceed its container height */
  /* overflow: hidden;  */
}



.shape-footer-child {
  border-radius: 30px; /* Applies rounded corners */
  object-fit: cover;   /* Ensures the content fills the container while maintaining aspect ratio */
}

.mask-group-icon2 {
  z-index: 1; /* Keeps the image on top */
  object-fit: cover; /* Ensures the image covers its container while maintaining aspect ratio */
}

.create-image-manipulations-container {
  margin: 0;
  width: 620px;
  position: relative;
  font-size: inherit;
  line-height: 120%;
  font-weight: 700;
  font-family: inherit;
  display: inline-block;
  flex-shrink: 0;
  max-width: 100%;
  z-index: 2;
}
.button13,
.footer-call-to-action1 {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.button13 {
  cursor: pointer;
  border: 0;
  padding: 13.5px 24px;
  background-color: #0179ff;
  box-shadow: 0 1px 2px rgba(13, 13, 18, 0.06);
  border-radius: 100px;
  justify-content: flex-start;
  gap: 6px;
  z-index: 2;
}
.footer-call-to-action1 {
  align-self: stretch;
  justify-content: space-between;
  max-width: 100%;
  gap: 20px;
  font-size: 48px;
}
.arrow-up-right-icon4 {
  width: 16px;
  height: 16px;
  position: relative;
}
.button14,
.footer-link-icons {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 3px 0 0;
}
.button14 {
  border-radius: 100px;
  background-color: #272835;
  flex-direction: row;
  padding: 9px 16px;
  gap: 7px;
  color: #fff;
}
.label17 {
  position: relative;
  line-height: 22px;
  display: inline-block;
  min-width: 40px;
}
.frame-input {
  margin: 0;
  height: 21px;
  width: 20px;
}
.label19 {
  position: relative;
  line-height: 155%;
}
.arrow-up-right-icon5 {
  height: 20px;
  width: 20px;
  position: relative;
}
.button17 {
  align-self: stretch;
  border-radius: 100px;
  display: none;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: 8px 9px 8px 10px;
  gap: 7px;
}
.label20 {
  position: relative;
  line-height: 22px;
  display: inline-block;
  min-width: 57px;
}
.button18 {
  border-radius: 100px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 9px 10px;
  gap: 7px;
}
.label21 {
  height: 22px;
  position: relative;
  line-height: 155%;
  display: inline-block;
}
.button19 {
  align-self: stretch;
  border-radius: 100px;
  display: none;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: 8px 2px 8px 10px;
  gap: 7px;
}
.footer-navigation,
.nav-link1 {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0 4px;
  box-sizing: border-box;
  max-width: 100%;
}
.nav-link1 {
  border-radius: 100px;
  justify-content: flex-start;
  gap: 24px;
  z-index: 2;
}
.footer-navigation {
  justify-content: flex-end;
  text-align: center;
  font-size: 14px;
  color: #a4acb9;
}
.logos-icon {
  height: 30px;
  width: 30px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  min-height: 30px;
}
.sosmed {
  display: none;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  z-index: 5;
}
.footer,
.shape-footer {
  display: flex;
  box-sizing: border-box;
  max-width: 100%;
}
.shape-footer {
  flex: 1;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 50px 46px;
  position: relative;
  gap: 117px;
}
.footer {
  align-self: stretch;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 0 80px;
  text-align: left;
  font-size: 32px;
  color: #fff;
  font-family: "DM Sans";
  /* background:
    conic-gradient(from 90deg at 1px 1px,#0000 90deg,blue 0) 
    0 0/50px 50px; */
}
.revolutionize-your-greetings-w-parent {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 54px;
  max-width: 100%;
  text-align: center;
  font-size: 78px;
  color: #000;
  font-family: "Instrument Sans";
}
.home-page,
.macbook-pro {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  height: 100vh;
}

/* Default Styles */
.home-page {
  flex: 1;
  background-color: #f6f8fa;
  overflow-y: auto;
  flex-direction: column;
  padding: 0 0 69px;
  box-sizing: border-box;
  gap: 80px;
  max-width: 100%;
}

/* .macbook-pro {
  width: 100%;
  position: relative;
  background-color: #fff;
  overflow: hidden;
  flex-direction: row;
  line-height: normal;
  letter-spacing: normal;
} */

/* Responsive Styles */
@media (max-width: 1024px) {
  .home-page {
    padding: 0 0 40px;
    gap: 60px;
  }

  .macbook-pro {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .home-page {
    /* padding: 0 0 30px; */
    gap: 40px;
  }

  .macbook-pro {
    flex-direction: column;
    overflow-y: auto;
  }
}

@media (max-width: 480px) {
  .home-page {
    padding: 0 10px 20px;
    gap: 20px;
  }

  .img-icon {
    width: 0;
    height: 0;
    visibility: hidden;
   }

  .macbook-pro {
    flex-direction: column;
    /* padding: 10px; */
  }
  .testimonials-container{
    width: 100%;
  }
  .testimonials{
    width: 100%;
  }
}

@media screen and (max-width: 1300px) {
  .hero-content {
    /* padding-left: 29px;
    padding-right: 29px; */
    box-sizing: border-box;
  }
  .card-feature1 {
    flex: 1;
  }
  .feature-cards {
    flex-wrap: wrap;
  }
  .card-feature2 {
    flex: 1;
  }
  .feature-cards1 {
    flex-wrap: wrap;
  }
  .steps-content-parent {
    display: flex;          /* Make the parent a flex container */
    flex-wrap: wrap;        /* Allow child elements to wrap to the next line if necessary */
    justify-content: center; /* Center the content horizontally */
    align-items: center;    /* Center the content vertically (optional, based on your layout needs) */
    gap: 20px;              /* Adds some space between the child elements */
  }
  
  .card-steps-container,
  .image11 {
    flex: 1 1 300px;       
    max-width: 500px;       /* Optional: Limits the max width of each card or image */
    min-width: 300px;       /* Optional: Ensures elements don't shrink too much */
  }
  
  .steps-image-container {
    display: flex;          /* Make this container a flexbox */
    flex-direction: column;        /* Allow images or content to wrap onto the next line */
    justify-content: center;/* Center the images horizontally */
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;     
    width: 100%;         /* Optional: Adds space between images */
  }
  
  .features-content-wrapper {
    padding-bottom: 30px;
    box-sizing: border-box;
  }
  .shape-footer {
    padding-left: 23px;
    padding-right: 23px;
    box-sizing: border-box;
  }
  .home-page {
    padding-bottom: 29px;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 1125px) {
  .nav-link {
    display: none;
  }
  .button5{
    visibility: hidden;
    display: none;
  }
  .button-parent{
   right: 0;
   position: relative;
   /* margin-right: 40px; */
  }
  .hamburger {
    display: block;
  }
  .nav-link-wrapper {
    width: 80px;
  }
  .image-5,
  .image2-parent {
    flex: 1;
  }
  .image-5-parent,
  .image-grid {
    flex-wrap: wrap;
  }
  .card-steps-container {
    min-width: 100%;
  }
  .third-card-container{
    height: 0;
    width: 0;
  }
  .mask-group-icon1{
    height: 0;
    width: 0;
  }
  .image11{
    height: 0;
    width: 0;
    display: none;
  }
  .img-icon{
    height: 0;
    width: 0;
  }
  .david-content {
    padding-top: 150px;
    padding-bottom: 150px;
    box-sizing: border-box;
  }
  .footer-call-to-action1 {
    flex-wrap: wrap;
  }
  .home-page {
    padding-bottom: 20px;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 800px) {
  .navbar {
    padding-left: 40px;
    padding-right: 25px;
    box-sizing: border-box;
    /* overflow: hidden; */
  }
  .revolutionize-your-greetings-container {
    font-size: 62px;
  }

  .testimonials-header-parent animate{
    width: 100%;
  }

  .image-5,
  .text-input {
    min-width: 100%;
  }
  .m {
    font-size: 38px;
    line-height: 46px;
  }
  .image1 {
    padding-left: 186px;
    box-sizing: border-box;
  }
  .image-grid,
  .image1-wrapper,
  .image2-parent {
    min-width: 100%;
  }
  .image-container {
    
  }
  .card-steps-container {
    width: 100%;
  }
  .what-do-you {
    font-size: 32px;
    line-height: 29px;
  }
  .image-container-parent {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
   flex-wrap: wrap;
  }


.david-review {
  flex: 1;
  /* background: linear-gradient(180deg, rgba(137, 137, 137, 0), #2c2c2c 83%); */
  flex-direction: column;
  align-items: flex-start;
  padding: 15px 20px 20px;
  /* box-sizing: border-box; */
  gap: 14px;
  z-index: 1;
}

  .ai-powered-creativity-parent,
  .card-feature-inner {
    flex: 1;
    width: 100%;
    height: auto;
  }
  .card-feature {
    gap: 24px;
    flex-wrap: wrap;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
    min-width: 100%;
  }
  .card-feature-inner1 {
    flex: 1;
  }
  .card-feature1 {
    gap: 24px;
    flex-wrap: wrap;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
    min-width: 100%;
  }
  .print-and-delivery-parent {
    flex: 1;
  }
  .card-feature-inner2 {
    flex: 1;
    margin-left: 0;
  }
  .card-feature2 {
    flex-wrap: wrap;
    min-width: 100%;
  }
  .card-feature-inner3,
  .image {
    flex: 1;
  }
  .card-feature3 {
    flex-wrap: wrap;
    padding-right: 27px;
    box-sizing: border-box;
    min-width: 100%;
  }
  .features-grid {
    padding-bottom: 45px;
    box-sizing: border-box;
  }
  .how-ai-image {
    font-size: 32px;
    line-height: 38px;
    text-align: center;
  }
  .how-it-works-description {
    padding-left: 34px;
    padding-right: 34px;
    box-sizing: border-box;
    width: 100%;
    align-items: center;
  }
  .card,
  .card1 {
    flex-wrap: wrap;
  }
  .features-content-wrapper {
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 20px;
    box-sizing: border-box;
  }
  .testimonials-from-satisfied-container {
    font-size: 32px;
    line-height: 38px;
  }
  .sarah-content {
    padding-left: 36px;
    padding-top: 124px;
    padding-right: 35px;
    box-sizing: border-box;
  }
  .maria-review,
  .second-testimonial {
    padding-bottom: 25px;
    box-sizing: border-box;
  }
  .maria-review {
    padding-top: 124px;
    padding-bottom: 20px;
  }
  .testimonials-container {
    /* padding-left: 40px;
    padding-right: 40px;
    box-sizing: border-box; */
    margin: 0;
    width: 100%;
  }
  .testimonials{
    margin: 0;
    padding: 0;
    width: 100%;
  }
  .second-testimonial{
    padding: 0;
    margin: 0;
  }

  .card4{
    width: 100%;
    margin-top: 25px;
  }



  .sarah-content{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0;
  }

  .sarah-review{
    width: 100%;
  }


  .maria-card{
    padding-left: 0;
    margin: 0;
  }

  .maria-details{
    display: flex;
    flex-direction: column;
    line-height: .5;
  }

  .maria-rodriguez-{
    line-height: 20px;
    font-size: 22px;
  }


  .imazai {
    font-size: 26px;
    line-height: 38px;
  }
  .create-image-manipulations-container {
    font-size: 38px;
    line-height: 46px;
  }
  .nav-link1 {
    flex-wrap: wrap;
  }
  .shape-footer {
    gap: 58px;
  }
  .footer {
    padding-left: 5px;
    padding-right: 5px;
    box-sizing: border-box;
  }
  .revolutionize-your-greetings-w-parent {
    gap: 17px;
  }
  .home-page {
    gap: 40px;
  }
}
@media screen and (max-width: 450px) {
  .revolutionize-your-greetings-container {
    font-size: 47px; /* Adjusted font size */
  }
  .effortlessly-create-personaliz {
    font-size: 19px; /* Adjusted font size */
  }
  .card-feature{
    width: 100%;
  }
  .a-magical-forest {
    font-size: 19px; /* Adjusted font size */
    line-height: 29px; /* Adjusted line height */
  }
  .m {
    font-size: 29px; /* Adjusted font size */
    line-height: 35px; /* Adjusted line height */
  }
  .image1 {
    padding-left: 20px; /* Adjusted padding */
    padding-top: 68px; /* Adjusted padding */
    padding-bottom: 14px; /* Adjusted padding */
    box-sizing: border-box;
  }
  .image1-wrapper {
    padding-top: 24px; /* Adjusted padding */
    box-sizing: border-box;
  }
  .image3-icon {
    flex: 1; /* Adjusted flex property */
  }
  .image3-parent {
    flex-wrap: nowrap; /* Adjusted flex-wrap property */
  }
  .what-do-you {
    font-size: 24px; /* Adjusted font size */
    line-height: 22px; /* Adjusted line height */
  }
  .image-container-parent {
    gap: 12px; /* Adjusted gap */
  }
  .ai-powered-creativity,
  .how-ai-image {
    font-size: 19px; /* Adjusted font size */
    line-height: 29px; /* Adjusted line height */
  }
  .how-ai-image {
    font-size: 24px; /* Adjusted font size */
  }
  .prompt,
  .second-prompt,
  .third-prompt {
    font-size: 14px; /* Adjusted font size */
    line-height: 20px; /* Adjusted line height */
  }
  .upload-your-image {
    font-size: 19px; /* Adjusted font size */
    line-height: 29px; /* Adjusted line height */
  }
  .steps {
    font-size: 14px; /* Adjusted font size */
    line-height: 20px; /* Adjusted line height */
  }
  .steps-title {
    flex: 1; /* Adjusted flex property */
  }
  .image11 {
    flex-wrap: nowrap; /* Adjusted flex-wrap property */
    padding-right: 5px; /* Adjusted padding */
    padding-bottom: 5px; /* Adjusted padding */
    box-sizing: border-box;
  }
  .testimonials-from-satisfied-container {
    font-size: 24px; /* Adjusted font size */
    line-height: 29px; /* Adjusted line height */
  }
  .testimonials-header {
    gap: 10px; /* Adjusted gap */
  }
  .sarah-johnson-,
  .david-lee-container,
  .maria-rodriguez-,
  .imazai {
    font-size: 19px; /* Adjusted font size */
    line-height: 19px; /* Adjusted line height */
  }
  .sarah-review,
  .david-content,
  .maria-info {
    padding-top: 32px; /* Adjusted padding */
    box-sizing: border-box;
  }
  .david-content {
    padding-bottom: 89px; /* Adjusted padding */
  }
  .create-image-manipulations-container {
    font-size: 29px; /* Adjusted font size */
    line-height: 35px; /* Adjusted line height */
  }
  .shape-footer {
    gap: 15px; /* Adjusted gap */
    padding-top: 16px; /* Adjusted padding */
    padding-bottom: 16px; /* Adjusted padding */
    box-sizing: border-box;
  }
  .home-page {
    gap: 10px; /* Adjusted gap */
  }
}









/* Animation */
.revolutionize-your-greetings-container {
  overflow: hidden; /* Ensures text is not visible until fully in place */
}

.revolutionize-your-greetings {
  display: inline-block; /* Ensures elements line up horizontally */
}

.revolutionize, .b, .revolutionize-your-greetings b {
  display: inline-block;
  opacity: 0;
  transform: translateY(-20px);
  animation: slide-down 1s ease forwards;
}

.revolutionize {
  animation-delay: 0.2s;
}

.b {
  animation-delay: 0.4s;
}

.revolutionize-your-greetings b:last-child {
  animation-delay: 0.6s;
}

@keyframes slide-down {
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

/* Initial state for .effortlessly-create-personaliz */
.effortlessly-create-personaliz {
  opacity: 0;
  transform: scale(0.9) translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Popup animation state for .effortlessly-create-personaliz */
.animate.effortlessly-create-personaliz {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* Initial states and transitions */
.revolutionize, .effortlessly-create-personaliz, .what-do-you, .benefits-answer .experience-the-power, .these-steps-outline-container .revolutionize-your-greetings {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

/* Specific states for animations */
.revolutionize:nth-of-type(2) {
  animation-delay: 2s;
}

.effortlessly-create-personaliz {
  transform: scale(0.95);
  transition: opacity 1.5s ease, transform 1.5s ease;
}

.what-do-you {
  transform: translateY(-20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.benefits-answer .experience-the-power {
  transform: translateY(20px);
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

.these-steps-outline-container .revolutionize-your-greetings {
  transform: translateY(20px);
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

/* Animation classes */
.animate {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.effortlessly-create-personaliz.animate {
  transform: scale(1);
  opacity: 1;
}

.what-do-you.animate {
  transform: translateY(0);
  opacity: 1;
}

.benefits-answer .experience-the-power.animate {
  transform: translateY(0);
  opacity: 1;
}

.these-steps-outline-container .revolutionize-your-greetings.animate {
  transform: translateY(0);
  opacity: 1;
}
/* Initial state for new elements */
.testimonials-from-satisfied-container,
.revolutionize-your-greetings,
.take-a-look1 {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Animation state */
.animate {
  opacity: 1;
  transform: translateY(0);
}

.take-a-look {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Animation state for .take-a-look */
.animate.take-a-look {
  opacity: 1;
  transform: translateY(0);
}

/* Initial state for .create-your-image */
.create-your-image {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Animation state for .create-your-image */
.animate.create-your-image {
  opacity: 1;
  transform: translateY(0);
}
/* Initial state for .create-your-image */
.create-your-image {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8ws ease-out;
}

/* Animation state for .create-your-image */
.animate.create-your-image {
  opacity: 1;
  transform: translateY(0);
}


@keyframes smoothFadeIn {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.image-5-parent {
  animation: smoothFadeIn 1s ease-in-out;
}

@keyframes zoomIn {
  from {
      transform: scale(0.8);
      opacity: 0;
  }
  to {
      transform: scale(1);
      opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
      transform: translateX(-100px);
      opacity: 0;
  }
  to {
      transform: translateX(0);
      opacity: 1;
  }
}

.features-grid {
  animation: zoomIn 1.2s ease-in-out;
}

.features,
.testimonials-header-parent {
  animation: slideInLeft 1s ease-out;
}


.fade-in-zoom {
  opacity: 0;
  transform: scale(0.9); /* Start with a slightly smaller size */
  transition: opacity 0.5s ease-in, transform 0.5s ease-in; /* Transition both opacity and scale */
}

.visible {
  opacity: 1;
  transform: scale(1); /* Scale to normal size */
}





























































