#business-opportunity::after {
  height: 100%;
}

#business-opportunity .left-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#business-opportunity .desc {
  color: var(--clr-heading-1);
  font-size: 20px;
}

#business-opportunity .gallery-wrap {
  display: flex;
  gap: 20px;
  position: relative;
}

#business-opportunity .main-img {
  width: 230px;
  height: 416px;
  border-radius: var(--radius-24);
  overflow: hidden;
  border: 4px solid #fff;
}

#business-opportunity .main-img img {
  object-position: 75% 100%;
}

#business-opportunity .side-imgs {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#business-opportunity .side-imgs figure {
  height: calc(208px - 10px);
  border-radius: var(--radius-30);
  overflow: hidden;
  border: 4px solid #fff;
}

#business-opportunity .decor-star {
  position: absolute;
  z-index: 3;
  pointer-events: none;
}

#business-opportunity .star-1 {
  top: -10px;
  left: 45%;
}
#business-opportunity .star-2 {
  bottom: 20%;
  right: -10px;
}

@media only screen and (max-width: 1023px) {
  #business-opportunity .gallery-wrap {
    /* margin-top: 40px; */
  }
}

@media only screen and (max-width: 767px) {
  #business-opportunity .main-img {
    height: 290px;
    width: 190px;
  }
  #business-opportunity .side-imgs figure {
    height: 140px;
  }
  #business-opportunity .btn-group .btn {
    /* max-width: 100%; */
  }
  #business-opportunity .gallery-wrap,
  #business-opportunity .side-imgs {
    gap: 10px;
  }
}

/* ///////////////// */
#what-is-creative-minds .content {
  align-items: center;
}

#what-is-creative-minds .polaroid-stack {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#what-is-creative-minds .polaroid {
  position: absolute;
  background: #fff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  /* width: 320px; */
}

#what-is-creative-minds .polaroid:nth-of-type(1) {
  z-index: 2;
  transform: rotate(-8deg) translateX(-20px);
  width: 400px;
  height: 437px;
  padding: 18px 16px 80px 16px;
}

#what-is-creative-minds .polaroid:nth-of-type(2) {
  z-index: 2;
  transform: rotate(9.36deg) translateX(190px) translateY(130px);
  width: 230px;
  height: 250px;
  padding: 10px 10px 46px 10px;
}

#what-is-creative-minds .polaroid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

#what-is-creative-minds .star {
  position: absolute;
  z-index: 3;
}

#what-is-creative-minds .star-tl {
  top: -2%;
  left: 10%;
}
#what-is-creative-minds .star-cr {
  top: 40%;
  right: 5%;
}
#what-is-creative-minds .star-bl {
  bottom: 15%;
  left: 5%;
}

#what-is-creative-minds .section-title {
  font-size: 24px;
  margin-bottom: 20px;
}

#what-is-creative-minds .section-description p {
  margin-bottom: 1.5rem;
}

@media only screen and (max-width: 1023px) {
  #what-is-creative-minds .polaroid-stack {
    height: 400px;
    margin-bottom: 50px;
  }

  #what-is-creative-minds .polaroid {
    width: 250px;
  }
}

/* /////////////////// */
#creative-path {
}

#creative-path .path-grid {
  margin-top: 4rem;
  margin-bottom: 50px;
  align-items: stretch;
  gap: 30px;
}

#creative-path .path-card {
  background: #ffffff;
  border-radius: var(--radius-24);
  box-shadow: var(--shadow-1);
  overflow: hidden;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 30px 24px;
}

#creative-path .card-img {
  height: 250px;
  width: 100%;
  border-radius: var(--radius-30);
  overflow: hidden;
  border: 5px solid #ffffff;
}

#creative-path .card-body {
  flex-grow: 1;
}

#creative-path .card-body h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

#creative-path .card-body p {
  line-height: 1.6;
  margin-bottom: 25px;
}

#creative-path .check-list {
  max-width: 430px;
}

#creative-path .check-list li {
  position: relative;
  padding-left: 35px;
  font-size: 14px;
  line-height: 1.4;
  color: var(--clr-gray);
}

#creative-path .check-list li:not(:last-child) {
  margin-bottom: 25px;
}

#creative-path .check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: -2px;
  width: 27px;
  height: 27px;
  border: 4px solid;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 12px;
}

#creative-path .list-green li::before {
  color: var(--secondary-clr);
  border-color: var(--secondary-clr);
}

#creative-path .list-purple li::before {
  color: #3a0ca3;
  border-color: #3a0ca3;
}

#creative-path .action-wrap {
  margin-top: 20px;
}

@media only screen and (max-width: 1023px) {
  #creative-path .path-card {
    max-width: 500px;
    margin: 0 auto;
    padding: 15px;
  }
}

@media only screen and (max-width: 767px) {
  #creative-path .path-grid {
    margin-top: 0;
  }

  #creative-path .card-body {
    padding: 0;
  }
  #creative-path .card-img {
    height: 200px;
  }

  #what-is-creative-minds .polaroid:nth-of-type(1) {
    width: 94%;
    height: 70%;
  }

  #what-is-creative-minds .polaroid:nth-of-type(2) {
    transform: rotate(9.36deg) translateX(110px) translateY(131px);
  }
}

/* //////////////////////////// */
#earning-potential .potential-grid {
  margin-top: 50px;
  align-items: stretch;
}

#earning-potential .potential-card {
  background: #ffffff;
  border-radius: var(--radius-24);
  padding: 30px 7%;
  text-align: left;
  box-shadow: var(--shadow-1);
  display: flex;
  flex-direction: column;
}

#earning-potential .icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 24px;
  color: #ffffff;
}

#earning-potential .bg-yellow {
  background-color: #f6d25d;
}
#earning-potential .bg-red {
  background-color: #f16551;
}
#earning-potential .bg-purple {
  background-color: #5d38a0;
}
#earning-potential .bg-green-alt {
  background-color: #52ae32;
}

#earning-potential .potential-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  min-height: 62px;
}

#earning-potential .card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--clr-gray);
  margin-bottom: 10px;
  font-weight: 500;
  min-height: 80px;
}

#earning-potential .pricing-list {
  border-top: 1px solid #efefef;
}

#earning-potential .price-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 15px 0;
  font-size: 13px;
  gap: 22px;
}

#earning-potential .price-row:not(:last-child) {
  border-bottom: 1px solid #efefef;
}

#earning-potential .price-row span {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.6;
}

#earning-potential .price-row strong {
  white-space: nowrap;
  text-align: right;
  font-size: 16px;
  font-weight: 700;
}

#earning-potential .price-row strong span {
  display: block;
  text-transform: lowercase;
}

@media only screen and (max-width: 1199px) {
  #earning-potential .potential-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 639px) {
  #earning-potential .potential-grid {
    grid-template-columns: 1fr;
  }

  #earning-potential .potential-card h3,
  #earning-potential .card-desc {
    min-height: auto;
  }
}

/* ///////////// WHAT WE GIVE ///////////// */
#what-we-give .flex-between {
  gap: 50px;
}

#what-we-give .flex-between > * {
  width: 50%;
}

/* Mockup Styles */
#what-we-give .mockup-box {
  background-color: var(--secondary-clr);
  padding: 40px 30px;
  border-radius: var(--radius-24);
  box-shadow: var(--shadow-1);
  position: relative;
  z-index: 3;
}

#what-we-give .mockup-box::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  filter: blur(217px);
  border-radius: 50%;
}

#what-we-give .mockup-box .slick-list,
#what-we-give .mockup-box .slick-track {
  height: 300px;
  padding-bottom: 0;
}

#what-we-give .mockup-box .slick-slide li {
  border-radius: var(--radius-16);
  overflow: hidden;
}

#what-we-give .mockup-box .slick-dots {
  left: 0;
  bottom: -50px;
}

#what-we-give .btn-wrap {
  margin-top: 5rem;
}

/* Accordion Styles */
#what-we-give .acc-item {
  background: #fff;
  border-radius: var(--radius-24);
  box-shadow: var(--shadow-1);
  margin-bottom: 10px;
  padding: 24px;
  transition: 0.3s linear;
}

#what-we-give .acc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

#what-we-give .acc-header h4 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

#what-we-give .acc-header .icon {
  border: 1px solid #bababa;
  color: var(--secondary-clr);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.3s linear;
}

#what-we-give .acc-item.active .icon {
  background: var(--secondary-clr);
  color: #fff;
  border: 1px solid var(--secondary-clr);
}

#what-we-give .acc-body {
  max-width: 450px;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s linear;
}

#what-we-give .acc-item.active .acc-body {
  max-height: 400px;
  opacity: 1;
  visibility: visible;
  padding-top: 20px;
}

#what-we-give .check-list li {
  font-size: 14px;
  color: var(--clr-gray);
  margin-bottom: 12px;
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 10px;
}

#what-we-give .check-list li i {
  color: var(--secondary-clr);
  margin-right: 7px;
  font-size: 1.4rem;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  #what-we-give .flex-between {
    flex-direction: column;
    gap: 30px;
  }
  #what-we-give .flex-between > * {
    width: 100%;
  }
}

@media (max-width: 767px) {
  #what-we-give .mockup-box {
    padding: 20px 10px;
  }

  #what-we-give .acc-header h4 {
    font-size: 16px;
  }
}

/* ///////////// ARTIST STORIES ///////////// */
#clients-section.artist-stories .client-pic {
  height: 120px;
  width: 120px;
}

/* ////////////////////////// */
#ideal-artist .image-grid-masonry {
}

#ideal-artist .content {
  align-items: center;
}

#ideal-artist .image-grid-masonry .row {
  display: flex;
  justify-content: space-between;
}

#ideal-artist .image-grid-masonry .row:nth-child(1) {
  margin-bottom: 10px;
}

#ideal-artist .image-grid-masonry figure {
  height: 203px;
  overflow: hidden;
  border-radius: var(--radius-30);
  border: 5px solid #ffffff;
}

#ideal-artist .image-grid-masonry .row.row-1 figure:nth-child(1),
#ideal-artist .image-grid-masonry .row.row-2 figure:nth-child(2) {
  width: 63%;
}

#ideal-artist .image-grid-masonry .row.row-1 figure:nth-child(2),
#ideal-artist .image-grid-masonry .row.row-2 figure:nth-child(1) {
  width: 36%;
}

#ideal-artist .masonry-item.icon-box {
  background-color: var(--secondary-clr);
  position: relative;
}

#ideal-artist .masonry-item.icon-box::before {
  content: '';
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  background-color: #ffffff;
  filter: blur(115px);
}

#ideal-artist .section-title {
  font-size: 24px;
  margin-bottom: 22px;
}

/* Subtle sparkle effect for the icon box */
/* #ideal-artist .masonry-item.icon-box::after {
  content: "✦";
  position: absolute;
  color: rgba(255, 255, 255, 0.4);
  top: 15%;
  right: 15%;
  font-size: 20px;
} */

#ideal-artist .text-wrap h4 {
  font-weight: 700;
  font-size: 18px;
}

#ideal-artist .check-list li {
  font-size: 14px;
  color: var(--clr-gray);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

#ideal-artist .check-list li i {
  color: var(--secondary-clr);
  flex-shrink: 0;
  font-size: 18px;
}

@media only screen and (max-width: 1023px) {
}

@media only screen and (max-width: 639px) {
  #ideal-artist .image-grid-masonry figure {
    height: 140px;
  }

  :is(#what-we-give, #ideal-artist) .grid-cols-2 {
    gap: 30px;
  }
}

/* /////////////////////////// */
#membership-cta .grid-cols-2 {
  gap: 30px;
}

#membership-cta .membership-card {
  background: #ffffff;
  border: 5px solid var(--secondary-clr);
  border-radius: var(--radius-24);
  padding: 43px 6%;
  display: flex;
  flex-direction: column;
}

#membership-cta .membership-card li {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #f2f2f2;
}

#membership-cta .membership-card li i {
  color: var(--secondary-clr);
  margin-right: 8px;
}

#membership-cta .card-footer-text {
  margin-top: auto;
  color: var(--clr-gray);
  font-weight: 600;
}

#membership-cta .journey-cta-card {
  background: var(--secondary-clr);
  border-radius: var(--radius-24);
  padding: 43px 5%;
  text-align: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

#membership-cta .icon-header {
  position: relative;
  margin-bottom: 25px;
}

#membership-cta .journey-cta-card h3 {
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
}

#membership-cta .journey-cta-card .section-description {
  color: #ffffff;
  margin-bottom: 30px;
}

/* /////////////////////////// */
.form-container-card {
  background: #fafafa;
  border-radius: var(--radius-24);
  padding: 40px 20px;
}

/* Polaroid Alt Stack */
.polaroid-stack-alt {
  position: relative;
  height: 400px;
}

.polaroid-alt {
  position: absolute;
  background: #fff;
  box-shadow: var(--shadow-1);
  z-index: 3;
}

.polaroid-alt.tilt-left {
  width: 60%;
  height: 91%;
  transform: rotate(-6deg);
  left: 12px;
  top: 20px;
  padding: 15px 13px 67px 13px;
}

.polaroid-alt.tilt-right {
  width: 44%;
  height: 67%;
  z-index: 1;
  transform: rotate(8deg);
  right: 16px;
  top: 50px;
  padding: 11px 10px 49px 10px;
}

/* Form Styling */
.cm-form .grid-cols-2 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.cm-form .input-group {
  position: relative;
  margin-bottom: 15px;
}

.cm-form input,
.cm-form select,
.cm-form textarea {
  width: 100%;
  padding: 12px 15px 12px 45px;
  border: 1px solid #dfdfdf;
  border-radius: 10px;
  background: #ffffff;
  font-size: 16px;
  transition: border-color 0.3s;
}

.cm-form textarea {
  padding-left: 15px; /* No icons for textareas */
  min-height: 130px;
}

.cm-form select {
  padding-left: 15px;
  appearance: none;
  color: #bababa;
}

.cm-form select:required:valid {
  color: #353535;
}

.cm-form select option {
  color: #353535;
}

.cm-form select option[value=''] {
  color: #bababa;
}

.cm-form input:focus,
.cm-form select:focus,
.cm-form textarea:focus {
  outline: none;
  border-color: var(--secondary-clr);
  background: #fff;
}

.cm-form input::placeholder,
.cm-form textarea::placeholder {
  color: #bababa;
}

.cm-form .input-icon {
  position: absolute;
  left: 15px;
  top: 10px;
  color: #bababa;
  font-size: 16px;
}

/* Driving Notice Box */
.form-notice {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-top: 20px;
}

.form-notice .icon-wrap {
  height: 37px;
  width: 37px;
  background: radial-gradient(#96db7e, #52ae32);
  position: relative;
  padding: 3px;
  flex-shrink: 0;
  border-radius: 50%;
}

.form-notice .icon {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  background: var(--secondary-clr);
  color: #ffffff;
  position: relative;
}

.form-notice p {
  font-size: 14px;
  line-height: 1.6;
}

.form-wrap input.btn.btn-green {
  margin-top: 2rem;
  border-radius: 40px;
  width: auto;
  padding: 12px 45px;
  margin-left: auto;
  border: 0;
  display: block;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.form-wrap input.btn.btn-green:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(82, 174, 50, 0.25);
}

@media (max-width: 991px) {
  .polaroid-stack-alt {
    height: 300px;
    margin-bottom: 40px;
  }
}

@media (max-width: 639px) {
  .polaroid-stack-alt {
    margin-bottom: -70px;
  }

  .polaroid-alt.tilt-left {
    width: 77%;
    height: 69%;
    padding: 15px 13px 25px 13px;
  }

  .polaroid-alt.tilt-right {
    width: 44%;
    height: 48%;
    right: -8px;
    top: 50px;
    padding: 11px 10px 18px 10px;
  }

  .cm-form .grid-cols-2 {
    gap: 0;
  }

  .form-wrap input.btn.btn-green {
    width: 100%;
  }
}
