/* Styling for the hero section */

/* Styling for the text and links */

/* images banner start */
.images-banner {
  padding: 120px 20px;
  background-color: black;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 2s ease-out, transform 2s ease-out;
}

.images-banner.show {
  opacity: 1;
  transform: translateY(0);
}

.images-text-header {
  font-size: 40px;
  font-weight: bold;
  color: white;
}

.images-brand-text {
  font-size: 34px;
  font-weight: 700;
  color: #2fbcbb;
  margin-bottom: 20px;
}

.images-text {
  color: white;
  font-size: 16px;
}

.images-text-line {
  color: white;
  font-size: 16px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
  display: block;
}

.show-element {
  opacity: 1;
  transform: translateY(0);
}
/* images banner end */

/* We can help two columns */
.help-section {
  padding: 120px 20px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 2s ease-out, transform 2s ease-out;
}
.help-section.show {
  opacity: 1;
  transform: translateY(0);
}

.help-header {
  color: #2fbcbb;
  font-weight: bold;
  font-size: 34px;
  padding: 20px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
  display: block;
}

.help-line {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
  display: block;
}

@media only screen and (min-width: 769px) {
  .help-columns {
    display: flex;
  }
}

.help-columns {
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
}

.help-column {
  flex: 1;
  padding: 20px;
  border-radius: 8px;
}

.help-column h3 {
  font-size: 24px;
  margin-bottom: 10px;
  text-decoration: underline;
  font-weight: bold;
}

.help-column p {
  font-size: 16px;
  line-height: 1.6;
}

/* Responsive design for mobile devices */
@media (max-width: 768px) {
  .columns {
    flex-direction: column;
    gap: 0;
  }

  .column {
    margin-bottom: 20px;
  }
}

/* End of We can help */

/* Brand & Story Projects Start */
.brand-story-banner {
  padding: 120px 20px;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 2s ease-out, transform 2s ease-out;
}
.brand-story-banner.show {
  opacity: 1;
  transform: translateY(0);
}

.brand-story-text-header {
  font-size: 30px;
  font-weight: bold;
  color: #2fbcbb;
}

/* Brand & Story Projects End */

/* FAQs start */

.faq-container {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  max-width: 1000px;
  margin: auto;
  margin-top: 40px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 2s ease-out, transform 2s ease-out;
}
.faq-container.show {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile-specific adjustments */
@media (max-width: 768px) {
  .faq-container {
    display: block;
    padding: 15px;
    margin-top: 80px;
  }
}

.faq-left {
  flex: 1;
  padding-right: 20px;
}

.faq-left h2 {
  font-size: 26px;
  color: #2fbcbb;
  font-weight: bold;
}

.faq-right {
  flex: 2;
}

.accordion {
  width: 100%;
  background-color: white;
  border-radius: 5px;
}

.accordion-item {
  border-bottom: 1px solid black;
  margin-bottom: 20px;
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  cursor: pointer;
  padding: 15px 0px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  background-color: white !important;
  color: black !important;
  font-weight: bold;
}

.accordion-header:hover {
  background-color: #e9e9e9;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease, opacity 0.5s ease;
  padding: 0 15px;
  opacity: 0;
}

.accordion-content p {
  margin: 0;
}

.accordion-item.active .accordion-content {
  max-height: 500px !important;
  padding: 10px 0px 15px;
  opacity: 1;
}

.arrow {
  font-size: 18px;
  transition: transform 1s;
  color: #2fbcbb;
}

.rotate {
  transform: rotate(540deg);
}

/* FAQs end */

/* Contact banner start */
.contact-banner {
  padding: 120px 20px;
  background-color: black;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 2s ease-out, transform 2s ease-out;
}
.contact-banner.show {
  opacity: 1;
  transform: translateY(0);
}

.contact-text-header {
  font-size: 34px;
  font-weight: 700;
  color: white;
  transform: translateY(50px);
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
  display: block;
}

.contact-brand-text {
  font-size: 34px;
  font-weight: 700;
  color: #2fbcbb;
  margin-bottom: 20px;
  transform: translateY(50px);
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
  display: block;
}

.contact-text {
  color: white;
  font-size: 20px;
}

.contact-line {
  color: white;
  font-size: 20px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
  display: block;
}

.show-element {
  opacity: 1;
  transform: translateY(0);
}

/* Contact banner end */
