@import url(main_css.css);

* {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  scroll-behavior: smooth;
}

body {
  background-image: var(--bg-img);
  background-repeat: repeat;
  background-size: contain;
  overflow-x: hidden;
}

/* font awesome css */

.fa-arrow-right {
  transform: rotate(-45deg);
}

/* scroll to top */
.scroll-to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  padding: 0.95rem 1.2rem;
  background-color: var(--white);
  color: var(--primary-text);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  border: 1px solid var(--border);
  cursor: pointer;
  /* display: none; */
}

.scroll-to-top:hover {
  background-color: var(--muted-color);
}

.scroll-to-top .fa-solid {
  margin-left: 0px;
  font-size: 0.85rem;
}

/* modal section starts here */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  padding: 1rem;
  z-index: 999;
}

.modal {
  background: #fff;
  border-radius: 10px;
  max-width: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  max-height: 90vh;
}

.modal-header {
  padding: 0.75rem 1rem;
  background: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  color: var(--primary-text);
  box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.05);
}

.modal-header .fa-xmark {
  margin-left: 0px;
  font-size: 0.75rem;
  line-height: 30px !important;
  vertical-align: middle;
}

.close-btn {
  cursor: pointer;
  font-size: 1.5rem;
  border: none;
  background: none;
}

.modal-body {
  padding: 1rem;
  overflow-y: auto;
  flex: 1 1 auto;
  color: var(--secondary-text);
  font-size: 0.85rem;
  line-height: 150%;
}

.modal-footer {
  padding: 1rem;
  background: var(--white);
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
  box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.05);
}

.modal-footer a {
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  background: var(--white);
  color: var(--primary-text);
  transition: 0.3s;
  border: 1px solid var(--primary-text);
}

@media (max-width: 480px) {
  .modal {
    max-width: 100%;
  }
  .modal-body {
    max-height: 60vh;
  }
}
/* modal section ends here */

/* navbar starts here */
.menu-btn {
  text-align: center;
  padding: 0.6rem;
  border: 1px solid var(--border);
  display: none;
  border-radius: 8px;
}

.fa-bars {
  font-size: 1.2rem !important;
  margin-left: 0 !important;
  color: var(--primary-text);
}

.menu-btn.active {
  display: none;
}

.navbar-responsive {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: absolute;
  background-color: var(--white);
  top: 75px;
  box-shadow: 0px 10px 5px 2px rgba(0, 0, 0, 0.05);
  display: none;
  transition: all 0.3s ease-in-out;
}

.navbar-responsive ul {
  width: 100%;
}

.navbar-responsive ul li {
  list-style: none;
  display: block;
  margin: 1rem;
}

.navbar-responsive a {
  width: 100%;
  text-decoration: none;
  color: var(--primary-text);
  padding: 12px 16px;
  display: block;
  position: relative;
}

.nav_header {
  width: 100%;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.65);
  backdrop-filter: saturate(180%) blur(20px);
  position: fixed;
  z-index: 1;
}

.header_all {
  width: calc(100% + 20px);
  max-width: 1440px;
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.navbar ul li {
  list-style: none;
  display: inline-flex;
  margin-left: 16px;
}

.navbar a {
  text-decoration: none;
  color: var(--primary-text);
  padding: 12px 16px;
  display: inline-block;
  position: relative;
}

.navbar a::before {
  content: "";
  position: absolute;
  width: 0px;
  height: 1px;
  left: 0;
  bottom: 0;
  background-color: var(--primary-text);
  transition: all 0.3s ease-in-out;
}

.navbar a:hover::before {
  width: 100%;
}

.fa-solid {
  margin-left: 8px;
  font-size: 10px;
  line-height: 20px !important;
}

/* navbar ends starts here */

/* banner starts here */
.banner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner_container {
  width: 100%;
  max-width: 1440px;
  margin: 90px auto 0;
  display: flex;
  flex-flow: column;
  gap: 36px;
  padding: 3.125rem;
}

.banner_container p {
  color: var(--secondary-text);
  line-height: 170%;
  font-size: 20px;
}

.banner_container .text-part {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.banner_container h3 {
  font-size: 72px;
  font-weight: 400;
  color: var(--primary-text);
}

.CTAs a {
  color: var(--primary-text);
  display: inline-block;
  padding: 16px;
  margin: 0 10px;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  background-color: var(--white);
  border: 1px solid var(--primary-text);
}

.CTAs a:hover {
  transform: translateY(-2px);
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.05);
}

.CTAs a .fa-solid {
  line-height: 20px !important;
  font-size: 12px;
}

.CTAs a:nth-child(1) {
  margin-left: 0px;
}

.CTAs p {
  color: var(--secondary-text);
  line-height: 170%;
  font-size: 14px;
  margin: 24px 0;
}

.brands-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-direction: column;
}

.img-container {
  width: 100%;
  max-width: 1440px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
}

.brand-img {
  width: 150px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
}

.brand-img h2 {
  font-size: 1.755rem;
  font-weight: 500;
  color: var(--primary-text);
}

.brand-img p {
  color: var(--secondary-text);
  font-size: 14px;
}

.brands-container a .fa-solid {
  line-height: 20px !important;
  font-size: 12px;
}

.brands-container a:hover {
  text-decoration: underline;
}
/* banner section ends here */

/* work-trailer section starts here */
.work-trailer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 3rem;  
  border-radius: 10px;
}

.work-trailer video{
  border-radius: 10px;

}

.trailer-container {
  width: 100%;
  height: 100%;
  max-width: 1440px;
  background-color: var(--primary-text);
  border-radius: 16px;
  overflow: hidden;
  margin: 0 auto;
}

.trailer-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* work-trailer section ends here */

/* Experties section starts here */
.experties {
  width: 100%;
  background-image: var(--bg-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
}

.experties-container {
  width: 100%;
  max-width: 1440px;
  padding: 5rem 2rem;
}

.experties-container h2 {
  font-size: 2.575rem;
  margin-bottom: 2.455rem;
  font-weight: 400;
  color: var(--white);
}

.experties-container p {
  font-size: 1.5rem;
  font-weight: 200;
  color: var(--white);
  line-height: 150%;
}

.experties-container h2::before {
  content: "";
  display: block;
  background-color: white;
  height: 3px;
  width: 60px;
  margin-bottom: 5px;
  border-radius: 3px;
}

.experties-all {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.855rem;
}

.experty {
  width: 30%;
  padding: 1rem;
  border-radius: 8px;
  background-color: var(--white);
  cursor: pointer;
  transition: 0.5s ease-in-out;
}

.experty:hover{
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.521);
  transform: scale(1.05);
}


.experty h3 {
  font-size: 1.575rem;
  margin: 8px 0;
  font-weight: 400;
  color: var(--primary-text);
}

.experties-all .experty p {
  font-size: 1rem;
  font-weight: 400;
  color: var(--secondary-text);
  line-height: 150%;
}

.experty a {
  margin: 16px 0 0;
  display: inline-block;
  text-decoration: none;
  font-size: 1rem;
  color: var(--link-color);
}
/* Experties section ends here */

/* featured work section starts here */
.featured-work {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.f-work-container {
  width: 100%;
  max-width: 1440px;
  padding: 5rem 2rem;
}

.f-work > div{
  width: 50%;
}

.f-work-container h2 {
  font-size: 2.575rem;
  margin-bottom: 2.455rem;
  font-weight: 400;
  color: var(--primary-text);
}

.f-work-container h2::before {
  content: "";
  display: block;
  background-color: var(--primary-color);
  height: 3px;
  width: 60px;
  margin-bottom: 5px;
  border-radius: 3px;
}

.work-img {
  width: 100%;
  height: 500px;
}

.f-work {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.f-work:not(:last-child) {
  margin: 0 0 4rem;
}

.f-work:nth-child(even) {
  flex-direction: row-reverse;
}

.work-description h1 {
  margin: 0.8rem 0;
  font-size: 3rem;
  font-weight: 500;
  color: var(--primary-text);
}

.work-description p {
  font-weight: 300;
  color: var(--secondary-text);
  line-height: 150%;
}

.work-description a {
  padding: 1rem 0;
}

.work-description span {
  font-size: 0.7rem;
  color: var(--secondary-text);
  padding: 0.4rem;
  display: inline-block;
  border: 1px solid var(--secondary-text);
  border-radius: 5px;
  margin-left: 8px;
}

.work-description span:nth-child(1) {
  margin-left: 0px;
}
/* featured work section ends here */

/* FAQs section starts here */
.FAQs {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: var(--bg-gradient);
}

.FAQs-container {
  width: 100%;
  max-width: 1440px;
  padding: 5rem 2rem;
}

.FAQs-container h3 {
  font-size: 2.575rem;
  margin-bottom: 2.455rem;
  font-weight: 400;
  color: var(--white);
}

.FAQs-container h3::before {
  content: "";
  display: block;
  background-color: white;
  height: 3px;
  width: 60px;
  margin-bottom: 5px;
  border-radius: 3px;
}

.accordion {
  overflow: hidden;
}

.accordion-item {
  margin: 1rem 0;
  border-bottom: 1px solid #ddd;
}

.accordion-header {
  padding: 1.5rem;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header h2 {
  font-weight: 300;
  color: var(--white);
}

.accordion-header .fa-chevron-down {
  color: var(--white);
  transition: all 0.3s ease-in-out;
}

.fa-chevron-down.active {
  transform: rotate(-180deg);
}

.accordion-body {
  display: none;
  color: var(--white);
  padding: 15px 20px;
  background: transparent;
  line-height: 150%;
}

.accordion-body p a{
  padding: 0px;
  text-decoration: underline;
  color: var(--white);
}

.accordion-body a{
  text-decoration: underline;
  color: var(--white);
  padding: 15px 20px;
  background: transparent;
  line-height: 150%;
  cursor: pointer;
}

.accordion-header.active {
  background: transparent;
}
/* FAQs section ends here */

/* Order process section starts here */
.order-process {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-container {
  width: 100%;
  max-width: 1440px;
  padding: 5rem 2rem;
}

.process-container h2 {
  font-size: 2.575rem;
  margin-bottom: 2.455rem;
  font-weight: 400;
  color: var(--primary-text);
}

.process-container p {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--secondary-text);
  line-height: 150%;
}

.process-container h2::before {
  content: "";
  display: block;
  background-color: var(--primary-color);
  height: 3px;
  width: 60px;
  margin-bottom: 5px;
  border-radius: 3px;
}

.process-all {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 1.755rem;
}

.process {
  width: 30%;
  padding: 1rem;
  border-radius: 8px;
  background-color: var(--white);
  border: 1px solid var(--border);
}

.process-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.65rem;
}

.process span {
  width: 35px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed var(--border);
  border-radius: 20px;
}

.process span .fa-solid {
  font-size: 1rem;
  color: var(--primary-text);
  margin-left: 0;
}

.process h3 {
  font-size: 1.575rem;
  margin: 8px 0;
  font-weight: 400;
  color: var(--primary-text);
}

.process-all .process p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--secondary-text);
  line-height: 150%;
}

.process a {
  margin: 16px 0;
  display: inline-block;
  text-decoration: none;
  font-size: 1rem;
  color: var(--link-color);
}
/* Order process section ends here */

/* testimonials section starts here */
.testimonials {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: var(--bg-gradient);
}

.testimonials-container {
  width: 100%;
  max-width: 1440px;
  padding: 5rem 2rem;
}

.testimonials-container h3 {
  font-size: 2.575rem;
  font-weight: 400;
  color: var(--white);
}

.testimonials-container h3::before {
  content: "";
  display: block;
  background-color: white;
  height: 3px;
  width: 60px;
  margin-bottom: 5px;
  border-radius: 3px;
}

.carousel {
  padding: 40px 40px 60px;
  overflow: hidden;
}

.testimonial {
  display: none;
  opacity: 0;
  transform: translateX(50px);
}

.testimonial.active {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

.testimonial p {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.6;
}

.testimonials-container p {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.6;
}

.cust-demographic {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}

.avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ddd;
}

.demographic h2 {
  color: var(--primary-text);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--white);
}

.demographic p {
  font-size: 0.8rem;
  color: var(--white);
  margin-bottom: 0px;
}

/* Dots */
.dots {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
}
.dot {
  width: 15px;
  height: 5px;
  border-radius: 15px;
  background: var(--white);
  cursor: pointer;
  transition: all 0.3s ease, transform 0.3s ease;
}
.dot.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}
/* testimonials section ends here */

/* blogs section starts here */
.blogs {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blogs-container {
  width: 100%;
  max-width: 1440px;
  padding: 5rem 2rem;
}

.blogs-container h2 {
  font-size: 2.575rem;
  font-weight: 400;
}

.blogs-container h2::before {
  content: "";
  display: block;
  background-color: var(--primary-color);
  height: 3px;
  width: 60px;
  margin-bottom: 5px;
  border-radius: 3px;
}

.blogs-all {
  display: flex;
  gap: 30px;
  margin-bottom: 1.855rem;
  width: 100%;
  overflow-x: scroll;
}

.blog {
  width: 30%;
  flex: 0 0 auto;
  border-radius: 8px;
}

.blog-img {
  height: 250px;
}

.blog h3 {
  font-size: 1.575rem;
  font-weight: 400;
  color: var(--primary-text);
}

.blog-header {
  margin: 0.55rem 0;
}

.blogs-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.455rem;
}

.blogs-header span{
  color: rgb(190, 190, 190);
}

.blog-date {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--secondary-text);
}

.blogs-all .blog p {
  font-size: 1rem;
  font-weight: 400;
  color: var(--secondary-text);
  line-height: 150%;
}

.blog a {
  margin: 16px 0;
  display: inline-block;
  text-decoration: none;
  font-size: 1rem;
  color: var(--link-color);
}
/* blogs section starts here */

/* footer section starts here */
footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--muted-color);
}

.footer-container {
  width: 100%;
  max-width: 1440px;
  padding: 3rem 2rem;
}

.footer-container p {
  font-size: 1rem;
  line-height: 150%;
  color: var(--secondary-text);
}

.footer-container h2 {
  font-size: 2.225rem;
  line-height: 150%;
  color: var(--primary-text);
  font-weight: 500;
  margin: 0.55rem 0;
}

.footer-container a:hover {
  transform: translateX(5px);
}

.footer-btm-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom {
  width: 100%;
  max-width: 1440px;
  padding: 0.75rem 2rem;
}

.footer-bottom h3 {
  line-height: 150%;
  color: var(--primary-text);
  font-weight: 400;
  margin: 0.55rem 0;
  text-align: center;
  font-size: 0.85rem;
}
/* footer section starts here */

/* media query */

@media (max-width: 800px) {
  .nav_header {
    padding: 1rem;
  }

  .navbar ul {
    display: none;
  }

  .experty,
  .process {
    width: 100%;
  }

  .menu-btn {
    display: block;
  }

  .banner_container h3 {
    font-size: 2.5rem;
  }

  .banner_container p {
    font-size: 0.7rem;
  }

  .img-container {
    gap: 0.75rem;
    justify-content: space-around;
    align-items: flex-start;
  }

  .brand-img h2 {
    font-size: 1.125rem;
  }

  .brand-img {
    width: 30%;
  }

  .CTAs a {
    width: 100%;
    margin: 0;
    text-align: center;
    padding: 0.7rem;
  }

  .CTAs a:nth-child(1) {
    margin-bottom: 0.65rem;
  }

  .banner_container,
  .work-trailer,
  .experties-container,
  .process-container,
  .f-work-container,
  .FAQs-container,
  .testimonials-container,
  .blogs-container {
    padding: 1.5rem;
  }

  .experties-container h2,
  .process-container h2,
  .f-work-container h2,
  .FAQs-container h3,
  .accordion-header h2,
  .testimonials-container h3,
  .blogs-container h2 {
    font-size: 1.575rem;
    margin-bottom: 1rem;
  }

  .f-work > div{
    width: 100%;
  }

  .experties-all,
  .process-all {
    gap: 1rem;
  }

  .experties-container p,
  .process-container p {
    font-size: 1rem;
  }

  .f-work {
    flex-direction: column;
    gap: 1rem;
  }

  .f-work:not(:last-child) {
    margin: 0 0 1.25rem;
  }

  .work-img {
    height: 200px;
  }

  .work-description h1 {
    font-size: 1.655rem;
    margin: 0.5rem 0;
  }

  .work-description span {
    display: none;
  }

  .f-work:nth-child(even) {
    flex-direction: column;
  }

  .accordion-header h2 {
    font-size: 1rem;
  }

  .accordion-header {
    padding: 0.65rem 0;
  }

  .accordion-body {
    padding: 0 0 1rem;
  }

  .accordion-body p {
    font-size: 0.75rem;
    font-weight: 200;
  }

  .carousel {
    padding: 0.75rem 0;
  }

  .testimonial p,
  .demographic h2 {
    font-size: 0.95rem;
  }

  .avatar {
    width: 40px;
    height: 40px;
  }

  .cust-demographic {
    gap: 8px;
  }

  .demographic p {
    font-size: 0.65rem;
  }

  .blog {
    width: 325px;
    padding: 0.7rem;
    flex: 0 0 auto;
  }

  .blogs-all {
    flex-wrap: nowrap;
    width: 100%;
    overflow-x: scroll;
  }

  .blogs-header {
    margin-bottom: 1rem;
  }

  .blogs-container h2 {
    font-size: 1.575rem;
    margin-bottom: 0;
  }

  .footer-container h2 {
    font-size: 1.25rem;
  }

  .work-trailer{
    display: block;
    padding: 0.5rem 5%;
    height: auto;

}
.work-trailer video{
  width: 100%;
  height: 250px;

}
}
