@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

#header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 120px;

  text-align: center;
  background-color: #fff;
}

.logo img {
  height: 50px;
}

.nav-links {
  display: flex;
  gap: 32px;
  background-color: #fff;
}
.nav-links li {
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: medium;
  background-color: #fff;
}
.nav-links a:hover {
  color: #a657e7;
}

.menu-toggle {
  display: none;
  font-size: 25px;
  border: none;
  background: none;
  cursor: pointer;
}

.action-buttons {
  display: flex;
  gap: 12px;
}

.login {
  font-size: 14px;
  padding: 12px 26px;
  border: 1px solid #d0d5dd;
  background-color: #fff;
  border-radius: 24px;
  cursor: pointer;
}
.login:hover {
  background-color: #f0f0f0;
}
.demo {
  font-size: 14px;
  padding: 10px 26px;
  border: 1px solid #a657e7;
  color: #a657e7;
  background-color: #fff;
  border-radius: 24px;
  cursor: pointer;
}
.demo:hover {
  background-color: #a657e7;
  color: #fff;
}



/* Tablet */

@media (max-width: 1024px) {
  #header {
    padding: 12px 20px;
  }
  .nav-links {
    gap: 20px;
  }
  .login,
  .demo {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* Mobile */

@media (max-width: 768px) {
  #header {
    padding: 16px 20px;
  }
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 60px;
    right: 10px;
    width: 200px;
    background-color: #fff;
    flex-direction: column;
    align-items: end;
    gap: 16px;
    padding: 10px 30px;
    display: none;
    border-radius: 10px;
  }

  .nav-links.active {
    display: flex;
  }

  .action-buttons {
    display: none;
  }
}

/* home section */

#home {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 120px;
  background: #f4f4f4;
  gap: 60px;
}

.home-left {
  max-width: 470px;
  margin-top: -150px;
}

.tag {
  display: inline-block;
  padding: 8px 16px;
  border: none;
  background-color: #fff;
  border-radius: 16px;
  font-size: 10px;
  color: #555;
}

.home-left h1 {
  font-size: 42px;
  line-height: 1.2;
  margin: 20px 0;
}

#short {
  background: linear-gradient(90deg, black, #7c3aed, rgb(187, 184, 184));
  background-clip: text;
  color: transparent;
}

#price {
  color: #d32e23;
}

.home-left p {
  color: #555;
  margin-bottom: 25px;
}

.home-buttons {
  display: flex;
  gap: 24px;
  margin-top: 28px;
}

.start {
  font-size: large;
  padding: 12px 26px;
  border: none;
  color: #fff;
  background: linear-gradient(180deg, rgb(187, 184, 184) 0%, #7c3aed 100%);
  border-radius: 24px;
  cursor: pointer;
}

.right-image {
  display: flex;
  gap: 20px;
}

.right-image img {
  width: 49%;
  margin-top: 20px;
}

.social {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  background-color: #fff;
  border-radius: 24px;
  padding: 24px 0px;
  width: 80%;
}
.social h1 {
  font-size: 22px;
  color: #242323;
}
.social-icons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
}

/* Tablet */

@media (max-width: 1024px) {
  #home {
    padding: 50px 40px;
    gap: 40px;
  }

  .home-left h1 {
    font-size: 34px;
  }

  .home-left {
    max-width: 420px;
  }

  .right-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  .social {
    width: 90%;
    padding: 20px 20px;
  }
}

/* Mobile */

@media (max-width: 768px) {
  #home {
    flex-direction: column;
    padding: 20px 10px;
    text-align: center;
  }

  .home-left {
    max-width: 100%;
    margin-top: 0;
  }

  .home-left h1 {
    font-size: 40px;
  }

  .home-buttons {
    justify-content: center;
  }

  .social {
    width: 100%;
  }

  .social-icons {
    justify-content: center;
  }
}

/* contributor */

.contri {
  padding: 60px 120px;
  background-color: #fff;
  border-bottom: 1px solid #f2f4f7;
}

.contri-content {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.contri-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-right: 40px;
  border-right: 1px solid #d0d5dd;
  flex-shrink: 0;
}

.contri-card h1 {
  font-size: 30px;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.contri-card p {
  color: #475467;
  font-size: 16px;
  margin: 0;
  white-space: nowrap;
}

.contributor {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-left: 40px;
  flex-grow: 1;
}

.contributor img {
  height: 32px;
  width: auto;
  
}

/* Tablet */

@media (max-width: 1024px) {
  .contri {
    padding: 40px 40px;
  }

  .contributor {
    gap: 30px;
  }
}

/* Mobile */

@media (max-width: 768px) {
  .contri-content {
    flex-direction: column;
    text-align: center;
  }

  .contri-card {
    border-right: none;
    border-bottom: 1px solid #d0d5dd;
    padding-right: 0;
    padding-bottom: 20px;
    margin-bottom: 30px;
    align-items: center;
    width: 100%;
  }

  .contributor {
    padding-left: 0;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
  }

  .contributor img {
    height: 25px;
  }
}

/* Service */
#services {
  padding: 50px 120px;
  background-color: #f4f4f4;
}

.service-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
  gap: 16px;
}
.title {
  font-size: 40px;
  font-weight: 700;
}
.service-description {
  color: #344054;
  font-size: 16px;
  width: 741px;
}
#purple {
  color: #7c3aed;
}

.service-content {
  background: white;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.service-items {
  display: flex;
  gap: 40px;
  padding: 40px;
  border-radius: 10px;
}

/* right */

.right-items {
  flex: 1;
  border-right: 1px solid #d0d5dd;
  padding-right: 40px;
}

.tick {
  display: flex;
  align-items: center;
  gap: 10px;
}
.tick img {
  width: 30px;
  margin-top: -25px;
}

.right-items h2 {
  margin-bottom: 30px;
  font-size: 24px;
}

.feature {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.check {
  color: green;
  font-size: 20px;
}

.feature h4 {
  margin-bottom: 5px;
}

.feature p {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}

/* left */

.left-items {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.plan {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 35px 20px;
  border: 1px solid #ddd;
  border-radius: 12px;
  background: #fafafa;
}

.plan h4 {
  font-size: 16px;
  margin-bottom: 5px;
}

.plan p {
  font-size: 13px;
  color: #777;
}

.plan input {
  width: 18px;
  height: 18px;
}

/* Active plan */

.plan.active {
  border: 2px solid #a657e7;
  background: #f9f5ff;
  position: relative;
}

.badge {
  position: absolute;
  top: 5px;
  left: 20px;
  background: #475467;
  color: white;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 6px;
}

/* Tablet */

@media (max-width: 1024px) {
  #services {
    padding: 20px 10px;
  }

  .service-header {
    gap: 8px;
  }

  .service-title {
    font-size: 28px;
  }

  .service-description {
    width: 100%;
    font-size: 14px;
  }

  .service-items {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }
}

/* Engaging */

#engaging {
  padding: 50px 120px;
  background-color: #f4f4f4;
}

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

.clip-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  gap: 20px;
  padding: 48px;
}

.clip-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  background: white;
  padding: 20px 30px;
  border-radius: 16px;
}
.clip-card img {
  width: 100%;
}
.card-title {
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-title img {
  width: 30px;
  margin-top: -20px;
}
.card-title h1 {
  font-size: 20px;
  text-align: start;
  margin-left: 10px;
}

.card-description {
  color: #344054;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}

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

.social-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 12px 24px;
}
.social-card h4 {
  font-size: 20px;
  font-weight: 500;
}

/* Tablet */

@media (max-width: 1024px) {
  #engaging {
    padding: 40px 40px;
  }

  .clip-content {
    grid-template-columns: repeat(2, 1fr);
    padding: 30px;
  }

  .card-title img {
    width: 30px;
  }

  .social-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */

@media (max-width: 768px) {
  #engaging {
    padding: 40px 20px;
  }

  .clip-content {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .social-content {
    grid-template-columns: 1fr;
  }

  .clip-card {
    padding: 20px;
  }

  .card-title img {
    width: 20px;
  }

  .card-title h1 {
    font-size: 18px;
  }

  .card-description {
    font-size: 14px;
  }
}

/* video content */

#videos {
  padding: 50px 120px;
  background-color: #f4f4f4;
}

.video-content {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.video-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.video-card img {
  width: 100%;
  border-radius: 16px;
}
.video-card h4 {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  color: #344054;
}

/* Tablet */

@media (max-width: 1024px) {
  #videos {
    padding: 40px 40px;
  }

  .video-content {
    flex-wrap: wrap;
  }

  .video-card {
    width: 48%;
  }
}

/* Mobile */

@media (max-width: 768px) {
  #videos {
    padding: 40px 20px;
  }

  .video-card {
    width: 100%;
  }

  .video-card h4 {
    font-size: 18px;
  }
}

/* Popular */

#popular {
  padding: 50px 120px;
  background-color: #fff;
}

.popular-content {
  display: flex;
  gap: 48px;
  margin-top: 40px;
}

.right-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 20px;
}

.right-container h1 {
  font-size: 45px;
  text-align: center;
  font-family: "Raleway";
  font-weight: 800;
  text-align: start;
}

.right-container p {
  color: #344054;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}

.start-demo {
  font-size: large;
  padding: 5px 26px;
  border: none;
  color: #fff;
  background: linear-gradient(180deg, rgb(187, 184, 184) 0%, #7c3aed 100%);
  border-radius: 24px;
  cursor: pointer;
}

/* Tablet */

@media (max-width: 1024px) {
  #popular {
    padding: 40px 40px;
  }

  .popular-content {
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    align-items: center;
  }

  .right-container {
    align-items: center;
    text-align: center;
  }

  .right-container h1 {
    font-size: 36px;
  }
}

/* Mobile */

@media (max-width: 768px) {
  #popular {
    padding: 40px 20px;
  }

  .popular-content {
    flex-direction: column;
    gap: 24px;
  }

  .right-container {
    align-items: center;
    text-align: center;
  }

  .right-container h1 {
    font-size: 28px;
  }

  .right-container p {
    font-size: 14px;
  }

  .start-demo {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* Client Stories */
#clients {
  padding: 50px 120px;
  background-color: #f4f4f4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#clients h1 {
  text-align: center;
}

.client-videos {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

.normal-videos {
  display: flex;
  gap: 10px;
}
.normal-videos img {
  width: 246px;
  border-radius: 16px;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  padding: 20px;
}

.review-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: white;
  padding: 30px 40px;
  border-radius: 16px;
}

.review-card.big {
  grid-column: span 3;
}
.review-card.small {
  grid-column: span 2;
}

.name {
  font-size: 18px;
  font-weight: 600;
}
.position {
  font-size: 14px;
  color: #777;
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.avi-name {
  display: flex;
  gap: 12px;
  align-items: center;
}

.quote-container {
  position: relative;
}

.up-quote {
  width: 30px;
  position: absolute;
  top: -25px;
  left: -20px;
}
.down-quote {
  width: 30px;
  position: absolute;
  bottom: -25px;
  right: 10px;
}

/* Tablet */

@media (max-width: 1024px) {
  #clients {
    padding: 40px 40px;
  }

  .client-videos {
    flex-direction: column;
  }

  .normal-videos {
    flex-wrap: wrap;
  }

  .normal-videos img {
    width: 48%;
  }
  .special-video img {
    display: none;
  }

  .reviews {
    grid-template-columns: repeat(4, 1fr);
  }

  .review-card.big {
    grid-column: span 4;
  }

  .review-card.small {
    grid-column: span 2;
  }
}

/* Mobile */

@media (max-width: 768px) {
  #clients {
    padding: 40px 20px;
  }

  .normal-videos {
    flex-direction: column;
  }

  .normal-videos img {
    width: 100%;
  }

  .reviews {
    grid-template-columns: repeat(2, 1fr);
    padding: 10px;
  }

  .review-card {
    padding: 20px;
  }

  .review-card.big {
    grid-column: span 2;
  }

  .review-card.small {
    grid-column: span 2;
  }

  .review-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* FAQ */
#faq {
  padding: 50px 120px;
  background-color: #f4f4f4;
}
.faq-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
  gap: 16px;
}

.faq-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.faq-card {
  background: #fff;
  margin-bottom: 10px;
  border-radius: 4px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  color: #212121;
  text-align: left;
}

.faq-question .icon {
  border-radius: 50%;
  width: 24px;
  height: 24px;
  border: 1px solid #333;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 20px;
  color: #777;
  text-align: left;
}

.faq-card.active .faq-answer {
  max-height: 200px;
  padding: 20px;
}

/* Tablet */
@media (max-width: 1024px) {
  #faq {
    padding: 40px 60px;
  }

  .faq-question {
    font-size: 1rem;
    padding: 18px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  #faq {
    padding: 30px 30px;
  }

  .faq-header {
    margin-bottom: 30px;
  }

  .faq-question {
    font-size: 0.95rem;
    padding: 16px;
  }

  .faq-answer {
    font-size: 0.9rem;
  }
}

/* Footer */
#footer {
  background-color: #fff;
  padding: 40px 120px;
}
.footer-content {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col.brand-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.brand-info h3 {
  font-size: 18px;
  color: #131212;
}

.brand-info p {
  color: #344054;
  font-size: 14px;
  line-height: 1.5;
}

.logo {
  font-size: 32px;
  font-weight: 800;
}

.footer-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background-color: #f8fafc;
}

.contact-form textarea {
  height: 100px;
  resize: none;
}

ul {
  list-style: none;
}

ul li a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

ul li a:hover {
  color: #a657e7;
}

.submit-button {
  width: 100%;
  padding: 12px;
  background-color: #1a1a1a;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.footer-bottom {
  text-align: center;
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
}
