* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #6a6a6a;
}

/**------------------- Common Styles -----------------------**/
section {
  min-height: 100%;
  display: flex;
  justify-content: center;
  font-family: 'Poppins';
  padding: 6em 0;
  flex-direction: column;
  align-items: center;
  max-width: 1280px;
  margin: auto;
  width: 100%;
}

h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: #6a6a6a;
}

a:-webkit-any-link.secondary-btn {
  color: white;
}

.secondary-btn {
  background: #4e9459;
  text-decoration: none;
  border-radius: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5em;
  font-size: 1.2em;
  letter-spacing: 0.5px;
  color: white;
  font-family: 'Manrope';
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  padding: 1em 2.2em;
  margin: 1em;
  border: 1px solid #ffffff;
  box-shadow: 0px 0px 4px 0px #00000040;
  transition: box-shadow 0.3s ease-in-out;
  width: fit-content;
}

.secondary-btn:hover {
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

/**------------------- Hero Section -----------------------**/
.hero-section {
  background: white;
  margin: auto;
  text-align: center;
  padding: 0;
  background-image: linear-gradient(to right, rgba(88, 148, 78, 0.08) 1px, transparent 1px), linear-gradient(to bottom, rgba(88, 148, 78, 0.08) 1px, transparent 1px);
  background-size: 92px 92px;
  max-width: unset;
}

.hero-content {
  width: 100%;
  height: 100%;
  padding: 3.9em;
  padding-bottom: 0;
}

.hero-section h1 {
  text-align: center;
  font-size: 2.5em;
}

.hero-text {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  padding-top: 1.7em;
  font-size: 1.2em;
  letter-spacing: 0.2px;
  line-height: 1.7em;
}

.hero-section h1 span {
  color: #4e9459;
}

.mobile-btns {
  display: none;
}

.hero-container-buttons {
  display: flex;
  justify-content: center;
  gap: 1em;
  margin: 0.9em 0 0.7em;
}

.demo-btn {
  all: unset;
  color: #4e9459;
  font-size: 1.2em;
  padding-bottom: 0.5em;
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-thickness: 1px;
  cursor: pointer;
}

.demo-btn:hover {
  transform: scale(1.05);
  opacity: 0.9;
  transition: transform 0.2s ease-in-out;
}

.hero-container-desktop-main-image {
  position: relative;
  width: 77%;
  height: auto;
  margin: auto;
}

.hero-container-desktop-main-image .desktop-image {
  width: 96%;
  height: auto;
  box-shadow: 0px 40px 150px 50px rgba(78, 148, 89, 0.15);
  border-radius: 13px;
}

.client-cursor-image {
  position: absolute;
  width: 15%;
  left: -8%;
  top: -7%;
}

.client-cursor-image img {
  width: 100%;
}

.photographer-cursor-image {
  position: absolute;
  width: 16%;
  right: -8%;
  top: 25%;
}

.photographer-cursor-image img {
  width: 100%;
}

@keyframes circularWiggle {
  0% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(4px, 2px);
  }

  50% {
    transform: translate(0, 4px);
  }

  75% {
    transform: translate(-4px, 2px);
  }

  100% {
    transform: translate(0, 0);
  }
}

.client-cursor-image img,
.photographer-cursor-image img {
  animation: circularWiggle 5s infinite linear;
}

.hero-container-mobile-main-image {
  display: none;
}

.hero-container-mobile-main-image::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 62vh;
  bottom: -65%;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0px -31vh 30vh rgba(78, 148, 89, 0.28);
  background: transparent;
  z-index: -1;
  pointer-events: none;
}

/**------------------- Main  -----------------------**/
.main-content {
  width: 100%;
  transition: all 0.3s linear;
  background: white;
  background-color: #fff;
}

/**------------------- Key Features Section -----------------------**/

.nav-info {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.2em;
  opacity: 1;
  padding: 2em 0 1em;
  transition: opacity 0.3s ease-in-out;
  font-family: Roboto;
}

.nav-info>div {
  padding: 0.6em 1.6em;
  border: 1px solid #dadada;
  background: white;
  border-radius: 42px;
  color: #8f8f8f;
}

.nav-info>div>p {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
}

.nav-info>div>p>span {
  display: inline-flex;
}

.key-features-section h1 {
  font-size: 1.8em;
  margin: 1em 0;
  text-align: center;
  letter-spacing: 0.8px;
  line-height: 1.8em;
}

.key-features-section .tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: #d8d8d8 1px solid;
  border-radius: 6px;
  font-family: 'Roboto';
  font-weight: 500;
  color: #8f8f8f;
  width: 52.5%;
  padding: 0.5em;
  position: relative;
  overflow: hidden;
}

.key-features-section .tab {
  cursor: pointer;
  padding: 0.5em 2em;
  letter-spacing: 1px;
  line-height: 1.4em;
  text-align: center;
  box-sizing: border-box;
  border: 1px solid transparent;
  position: relative;
  transition: color 0.3s ease-in-out;
  z-index: 1;
}

.key-features-section .tab.active {
  color: white;
  transition: color 0.3s ease-in-out;
}

.slider {
  position: absolute;
  height: calc(100% - 1em);
  width: 32.5%;
  background-color: #4e9459;
  border-radius: 4px;
  transition: transform 0.5s ease-in-out;
  z-index: 0;
  top: 0.5em;
  left: 0.5em;
}

.key-features-section .content-box {
  width: 52.5%;
  aspect-ratio: 16 / 9;
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  margin: 1em 0 2em;
  box-shadow: 0px 40px 150px 50px rgba(78, 148, 89, 0.15);
  overflow: hidden;
}

.key-features-section .content-box iframe {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.content-box .content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  overflow: hidden;
  display: none;
  height: 100%;
}

.content-box[data-tab="album"] .content[data-tab="album"],
.content-box[data-tab="ai"] .content[data-tab="ai"],
.content-box[data-tab="branding"] .content[data-tab="branding"] {
  display: flex;
}

.content-box .content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-box .content .thumbnail {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
}

.content-box .content .icon-container {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  cursor: pointer;
  transition: scale 0.3s ease;
}

.content-box .content .icon-container .icon {
  display: flex;
  z-index: 10;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255);
  border-radius: 50%;
  width: 4em;
  height: 4em;
  cursor: pointer;
  box-shadow: inset 0 0 6.8px 0px rgb(0, 0, 0, 25%);
}

.content-box .content .icon-container:hover {
  scale: 1.05;
}

.content-box .content .icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

.content-box .content .video {
  display: none;
  width: 100%;
  height: 100%;
}

.content-box .content.active .video {
  display: flex;
}

.content-box .content.active .thumbnail {
  display: none;
}

/**----------------------- working-explanation-section -----------------**/

.working-explanation-section h1 {
  font-size: 2.2em;
  padding-bottom: 1em;
}

.working-explanation-section .content-box {
  width: 69%;
  aspect-ratio: 16 / 9;
  border: 1px solid #d8d8d8;
  border-radius: 19px;
  background-color: #d9d9d9;
  margin-bottom: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.working-explanation-section .content-box .content {
  display: flex;
}

.working-explanation-section .content-box iframe {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

/**------------------------ Additional Features Section ---------------------**/
.additional-features-section {
  padding: 5em 6em;
}

.additional-features-section h1 {
  font-size: 2.2em;
  /* padding-bottom: 1em; */
}

.additional-features-section span {
  color: #4e9459;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.additional-features-grid-background {
  background-image: url('../assets/img/index/multiply-privacy-options-bg-img.webp');
  background-repeat: no-repeat;
  background-size: 70%;
}

.additional-features-grid {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  grid-template-columns: repeat(3, 1fr);
  gap: 1em;
  font-size: 1.3em;
  text-align: center;
  margin-top: 4em;
}

.additional-features-grid img {
  width: 100%;
}

.item1 {
  grid-row: span 2;
  grid-column: span 1;
  border: 1px solid #d8d8d8;
  border-radius: 22px;
  padding: 1.2em;
  background-color: white;
}

.item1 .beautiful-mobile-galleries-img {
  width: 100%;
}

.item1 .beautiful-mobile-galleries-img img {
  width: 100%;
}

.item1 p {
  padding: 0 2em;
  margin: auto;
}

.item1 p,
.item2 p,
.item3 p,
.item4 p,
.item5 p {
  padding-top: 0.7em;
  font-size: 0.9em;
}

.item2 {
  grid-row: span 1;
  grid-column: span 1;
  border: 1px solid #d8d8d8;
  border-radius: 22px;
  padding: 1.2em;
  background-color: white;
}

.download-control-img {
  width: 100%;
}

.item3 {
  grid-row: span 1;
  grid-column: span 1;
  border: 1px solid #d8d8d8;
  border-radius: 22px;
  background-color: white;
  padding: 1.2em;
}

.inbuilt-crm-img {
  width: 100%;
}

.inbuilt-crm-img {
  width: 80%;
  margin: auto;
}

.item4 {
  grid-row: span 1;
  grid-column: span 1;
  border: 1px solid #d8d8d8;
  border-radius: 22px;
  background-color: white;
  padding: 1.2em;
}

.bulk-watermark-img {
  width: 100%;
}

.item5 {
  grid-row: span 1;
  grid-column: span 1;
  border: 1px solid #d8d8d8;
  border-radius: 22px;
  background-color: white;
  padding: 1.2em;
}

.guest-data-img {
  width: 78%;
  margin: auto;
}

/**--------------------------- Pricing & Palns Section ----------------------**/
.pricing-plans-section {
  padding: 5em 6em;
}

.pricing-plans-section h1 {
  font-size: 2.5em;
  padding-bottom: 2em;
}

.pricing-plans-main {
  display: flex;
  justify-content: space-between;
  gap: 6em;
  padding-top: 3em;
}

.pricing-plans-left {
  color: #141414;
  padding-top: 1em;
}

.pricing-plans-left-text-p {
  font-size: 4em;
}

.pricing-plans-left-text-inr-p {
  font-size: 4em;
  color: #4e9459;
  display: flex;
}

#lottie-smiley {
  display: inline-block;
  vertical-align: middle;
  width: 100px;
  height: 100px;
  margin-left: -15px;
}

.pricing-plans-left-text-inr-p p {
  position: relative;
  margin-left: 0.3em;
}

.pricing-plans-left-text-inr-p .inr-symb {
  height: 0.7em;
}

.pricing-plans-left-text-inr-p .underline {
  position: absolute;
  left: 4px;
  bottom: -11px;
}

.pricing-plans-left .secondary-btn {
  margin-top: 4em;
}

.pricing-plans-right {
  font-family: 'Poppins';
  color: #959595;
  font-weight: 400;
  font-size: 1.5em;
  position: relative;
}

.plans {
  display: flex;
  flex-direction: column;
  gap: 1.8em;
  list-style-type: none;
  font-size: 0.9em;
  letter-spacing: 0.5px;
}

.checkmark-container {
  display: flex;
  align-items: center;
  gap: 1em;
}

.icon-wrapper {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  border-radius: 50%;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
}

#pricing-palns-arrow-vec {
  position: absolute;
  left: -54%;
}

/**--------------------------- pricing Comparision Section --------------------**/

.pricing-comparision-section h1 {
  font-size: 2em;
  padding-bottom: 1em;
}

.brand-compar {
  display: flex;
  gap: 1.5em;
  padding-top: 3em;
}

.brand {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 2.5em 0;
}

#celebrare {
  background: #4e945912;
  border-radius: 18px;
  position: relative;
}

.brand-logo {
  /* width: 250px; */
  max-height: 69px;
}

.brand-logo img {
  width: 100%;
  height: 100%;
}

.size {
  font-size: 1.5em;
  line-height: 3em;
}

.price {
  font-size: 1.5em;
  line-height: 3em;
}

.value-for-money {
  color: #4e9459;
  font-size: 1.1em;
  padding-top: 1.5em;
}

/**---------------------------- FAQ Section -----------------------------**/
.faq-section {
  color: #727272;
}

.faq-section h1 {
  font-size: 2.1em;
  padding-bottom: 1em;
}

.mobile-faq-heading {
  display: none;
}

.faq-section .container {
  width: 62%;
  padding-bottom: 2em;
}

.faq-container {
  margin: 2em 0;
}

.faq-item {
  background-color: #f4f4f4;
  margin: 1.5em;
  padding: 0.8em 2em;
  border-radius: 9px;
  letter-spacing: 0.05em;
  word-spacing: 0.01em;
}

.faq-question {
  font-weight: 500;
  font-family: Manrope, sans-serif;
  font-size: 1.1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #727272;
  transition: color 0.1s ease-in-out;
}

.faq-answer {
  width: 90%;
  font-size: 1.1em;
  font-weight: 400;
  font-family: Poppins, sans-serif;
  display: none;
  padding: 0.2em 0;
}

.faq-toggle {
  padding-left: 1em;
  transition: transform 0.1s ease;
}

.faq-toggle.faq-active {
  transform: rotate(45deg);
}

/**--------------------------- Floating-section ---------------------------**/

.floating-section {
  border: 1px solid #d7d7d7;
  border-radius: 80px;
  background-color: white;
  padding: 1.2em;
  padding-top: 1.5em;
  position: relative;
  z-index: 3;
  width: 90%;
  margin: auto;
  margin-bottom: -27em;
  max-width: 1280px;
}

.floating-section a:-webkit-any-link {
  color: #4e9459;
}

.floating-section a:-webkit-any-link:hover {
  color: white;
}

.floating-section-main {
  display: flex;
  justify-content: space-between;
  padding: 0 1.5em;
}

.desktop-showing-album-features-img {
  box-sizing: content-box;
  width: 100%;
  padding-bottom: 2em;
}

.desktop-showing-album-features-img img {
  width: 100%;
}

.floating-section-left {
  flex: 1;
  display: flex;
  justify-content: center;
}

.floating-section-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  padding: 5em 0 0 3em;
}

.floating-section-right .heading {
  font-weight: 500;
  color: #4e9459;
  font-size: 1.1em;
  letter-spacing: 3px;
}

.floating-section-right .subheading {
  font-weight: 500;
  color: #444444;
  font-size: 1.5em;
  letter-spacing: 1.5px;
  line-height: 1.5em;
}

.floating-section-right .description {
  font-family: 'Roboto';
  font-size: 0.8em;
  color: #959595;
  letter-spacing: 1px;
  line-height: 1.8em;
  width: 90%;
  font-weight: 500;
}

.contact-btn {
  text-decoration: none;
  color: #4e9459;
  font-family: 'Manrope', sans-serif;
  font-size: 1.1em;
  display: flex;
  align-items: center;
  padding: 0.8em 1em;
  border: 1.5px solid #4e9459;
  border-radius: 14px;
  gap: 10px;
  background: transparent;
  width: fit-content;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease;
}

.contact-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #4e9459;
  transition: left 0.3s ease;
  z-index: -1;
}

.contact-btn:hover::before {
  left: 0;
}

.contact-btn:hover {
  color: white;
}

.contact-btn:hover svg path {
  stroke: white;
}


@media (max-width: 576px) {

  /**------------------- common styles ----------------------*/
  .mobile-btns {
    display: flex;
    margin: 2em 0;
  }

  .mobile-btn {
    background: #4e9459;
    text-decoration: none;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5em;
    font-size: 0.95em;
    letter-spacing: 0.5px;
    color: white !important;
    font-family: 'Manrope';
    font-weight: 400;
    line-height: 1;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    padding: 1em 2.2em;
    border: 1px solid #ffffff;
    box-shadow: 0px 0px 4px 0px #00000040;
    transition: box-shadow 0.3s ease-in-out;
    width: fit-content;
  }

  .desktop-btns {
    display: none;
  }

  section {
    padding: 4em 0;
  }

  /**------------------- Hero Section -----------------------**/

  .hero-content {
    padding: 1em;
    padding-top: 2.5em;
  }

  .hero-section h1 {
    font-size: 1.5em;
  }

  .hero-section .mobile-btn {
    margin: auto;
  }

  .hero-text {
    display: none;
  }

  .client-cursor-image {
    display: none;
  }

  .hero-container-desktop-main-image {
    display: none;
  }

  .photographer-cursor-image {
    display: none;
  }

  .hero-container-mobile-main-image {
    display: flex;
    width: 85%;
    margin: auto;
  }

  .hero-container-mobile-main-image img {
    width: 100%;
  }

  /**-------------------------- Key features Section ----------------------**/
  .nav-info {
    min-width: max-content;
    gap: 1.2em;
  }

  .key-features-section h1 br {
    display: none;
  }

  .tabs br {
    display: none;
  }

  .nav-info>div {
    padding: 0.5em;
  }

  .key-features-section {
    overflow-x: hidden;
  }

  .key-features-section h1 {
    font-size: 1.1em;
  }

  .key-features-section .tabs {
    display: flex;
    width: 90%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5em;
    padding: 1em;
  }

  .key-features-section .tab {
    width: 100%;
  }

  .slider {
    height: calc(33.33% - 0.5em);
    width: calc(100% - 1em);
    top: 0.5em;
    left: 0.5em;
  }

  .key-features-section .content-box {
    width: 90%;
    padding: 0.5em 1em;
  }

  /**----------------------- working-explanation-section -----------------**/

  .working-explanation-section .content-box {
    width: 90%;
    height: 196px;
  }

  .working-explanation-section h1 {
    font-size: 1.5em;
  }

  /* Additional Features Section  */
  .additional-features-section {
    padding: 3em 0;
  }

  .additional-features-grid-background {
    background-image: none;
    width: 100%;
  }

  .additional-features-section h1 {
    font-size: 1.3em;
    padding-bottom: 2em;
  }

  .additional-features-section p {
    font-size: 0.8em;
  }

  .additional-features-grid {
    grid-template-columns: repeat(1, 1fr);
    padding: 0 1em 0em;
    margin-top: 0em;
  }

  .item4 img {
    width: 100%;
  }

  /* Pricing and Plans */
  .pricing-plans-section {
    padding: 3em 0;
  }

  .pricing-plans-section h1 {
    font-size: 1.5em;
    padding-bottom: 0;
  }

  .pricing-plans-section .secondary-btn {
    display: none;
  }

  .pricing-plans-main {
    display: block;
    padding-top: 1em;
  }

  #lottie-smiley {
    width: 50px;
    height: 50px;
  }

  .pricing-plans-left {
    text-align: center;
    padding-bottom: 3em;
    color: #7d7d7d;
    letter-spacing: 2px;
    font-size: 0.85em;
  }

  .pricing-plans-left-text-p {
    font-size: 2em;
  }

  .pricing-plans-left-text-inr-p {
    font-size: 2em;
    display: flex;
    justify-content: center;
  }

  .pricing-plans-left-text-inr-p .underline {
    position: absolute;
    left: 11px;
    bottom: -11px;
    width: 94%;
  }

  .plans {
    font-size: 0.7em;
    gap: 1.4em;
  }

  .icon-wrapper {
    width: 40px;
    height: 40px;
  }

  #pricing-palns-arrow-vec {
    display: none;
  }

  /* Pricing Comparision Section */
  .pricing-comparision-section {
    display: none;
  }

  /* Faq section */
  .desktop-faq-heading {
    display: none;
  }

  .mobile-faq-heading {
    display: flex;
  }

  h1.mobile-faq-heading {
    font-size: 1.5em;
  }

  .faq-section .container {
    width: auto;
  }

  .faq-section .container {
    padding-bottom: 0;
  }

  .faq-item {
    font-size: 0.8em;
    padding: 0.8em;
  }

  .faq-toggle svg {
    width: 25px;
    height: 25px;
  }

  .faq-answer {
    font-size: 1em;
  }

  /**----------------------- Floating-section -----------------**/
  .floating-section {
    display: none;
  }

  .footer-section {
    padding-top: 0;
  }

  .footer-container {
    padding-top: 5em;
  }
}

@media (min-width: 1400px) {
  .hero-container-desktop-main-image .desktop-image {
    width: 85%;
  }

  .client-cursor-image {
    left: -3%;
  }

  .photographer-cursor-image {
    right: -3%;
  }
}


/* is-photographer-modal styles  */
.is-photographer-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.is-photographer-modal-container {
  background-color: white;
  border-radius: 16px;
  padding: 3em;
  width: 90%;
  max-width: 450px;
  position: relative;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.is-photographer-modal-title {
  font-family: Poppins;
  font-size: 1.5625em;
 color: #6A6A6A;
  margin-bottom: 1.5em;
}

.photographer-modal-buttons {
  display: flex;
  gap: 1em;
  justify-content: center;
}

.photographer-btn {
  border: 1px solid #A0A0A0;
  background: #FFFFFF;
  box-shadow: 0px 4px 4px 0px #00000024;
  font-family: Poppins;
  font-weight: 400;
  font-size: 1.5625em;
  text-align: center;
  border-radius: 10px;
  padding: 0.1em 1em;
  cursor: pointer;

}

.photographer-btn:hover {
  transform: scale(1.05);
}

.yes-btn {
  background-color: #4E9459;
  color: white;
}

.no-btn {
  background-color: white;
  color: #6A6A6A;
}

.is-photographer-modal .close-modal {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  cursor: pointer;
}