@import url('https://fonts.googleapis.com/css2?family=Geist:wght@100..900&display=swap');

:root {
  --bg-dark: #01030f;
  --light-grey: #ffffff4d;
  --dark-grey: #ffffff85;
  --hover-grey: #ffffffa7;
}

.header-container {
  background-image: url(../../assets/images/home/header.png);
  background-position: center;
}

.canva-container {
  background-image: url(../../assets/images/home/home-background-1.png);
}

.our-services {
  background-image: url(../../assets/images/home/home-background-2.png);
  background-position: center;
}

.techrev-details-container {
  color: white;
  background-image: url(../../assets/images/home/home-background-3.png);
}

.ai-software-section {
  color: white;
  background-image: url(../../assets/images/home/home-background-4.png);
  background-position: center;
}

.story-result-container {
  color: white;
  background-image: url(../../assets/images/home/home-background-5.png);  
}

.bottom-container {
  color: white;
  background-image: url(../../assets/images/home/home-background-6.png);
}

.header-container,
.canva-container,
.our-services,
.techrev-details-container,
.ai-software-section,
.story-result-container,
.bottom-container,
.contact-form-container,
.image-container {
  background-repeat: no-repeat;
  background-size: cover;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
button,
ol,
ul,
li,
a {
  font-family: "Geist", sans-serif !important;
}

.home-body {
  padding-top: 50px;
}

.m-55 {
  margin: 55px 0;
}

.nav-container {
  background: var(--bg-dark) !important;
  display: flex;
  justify-content: center;
}

/* Navbar dropdown icon */
.dropdown-toggle::after {
  display: none !important; 
}


.custom-navbar {
  background: var(--bg-dark) !important;
  border: 1px solid var(--light-grey);
  border-radius: 14px;
  padding: 0 12px !important;
  margin: 8px 0 !important;

  .navbar-brand img {
    height: 50px;
    margin-right: 8px;
  }

  .nav-item {
    margin: 0 8px;
    transition: color 0.3s;
    font-size: 15px;
  }

  .nav-link {
    color: #fff !important;

    &:hover {
      color: var(--hover-grey) !important;
    }
  }

  .primary-btn {
    font-size: 15px;
    background-color: var(--bg-dark);
  }
}

/* Position submenu */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
}

.dropdown-submenu > .dropdown-toggle::after {
  content: "";
  border: none;
}

.dropdown-item:hover,
.dropdown-item:active {
  background-color: #000 !important;
  color: #fff !important;
}

.primary-btn {
  color: #fff;
  border: 2px solid #fff;
  border-radius: 5px;
  padding: 6px 15px;
  font-size: 20px;
  background-color: transparent !important;
  cursor: pointer;

  &:hover {
    background-color: #fff !important;
    border-color: #ffffff !important;
    color: #000000 !important;
    box-shadow: rgba(255, 255, 255, 0.56) 0px 22px 70px 4px !important;
  }
}

.header {
  padding-top: 130px;
  color: #fff;

  .info {
    background-color: var(--bg-dark);
    padding: 5px;
    border: 1px solid var(--light-grey);
    width: 325px;
    display: flex;
    border-radius: 25px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;

    span {
      background-color: #fff;
      color: #000;
      padding: 2px 4px;
      border-radius: 25px;
      font-size: 11px;
      font-weight: 600;
    }

    p {
      margin: 0;
      font-size: 18px;
    }
  }

  h1 {
    font-size: 70px;
    line-height: 90px;
    font-weight: 700;
  }

}

.teams-img {
  margin: 20px;

  .echo-valley,
  .acme-corp {
    width: 130px;
  }

  .apex,
  .pulse {
    width: 90px;
  }

  .celestial,
  .quantum {
    width: 110px;
  }
}

.canva,
.ai-service,
.contact-form-container {
  h1 {
    text-align: center;
    color: #fff;
    font-size: 65px;
    line-height: 80px;
    font-weight: 600;
  }
}

.ai-service {
  ul {
    padding-left: 15px !important;
  }

  p,
  h2,
  li {
    color: #fff;
    margin: 12px 0;

  }

  button {
    margin-bottom: 12px;
  }

  p {
    text-align: center;
    line-height: 22px;
    font-size: 14px;
  }
  .cards-wrapper{
    display: flex;
  }
  .ai-service-card {
  flex: 0 0 21%; /* 100% / 4 = 25%, so 4 visible on desktop */

}


  .ai-service-card {
    border-radius: 15px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 10px;
    background: url(../../assets/images/home/service-card-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border: 2px solid #2aaecd;

    h2 {
      font-size: 19px;
      line-height: 27px;
    }

    div {
      height: 45px;
      width: 45px;
    }
  }
}


.learn-more-btn{
  width: 60%;
  padding: 5px 10px !important;
}

.dots-wrapper {
  gap: 8px;
}

.dot {
  height: 12px;
  width: 12px;
  border-radius: 50%;
  background-color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #5160F2;
}


.techrev-card {
  h3 {
   font-size: 64px;
  }

  h6 {
  font-size: 22px;
  }

  p {
   color: var(--dark-grey);
  }
}


/* techrev-details-section */
.techrev-detail-title {
  font-size: 26px;
  line-height: 40px;
}

.techrev-detail-title-div {
  margin: 20px 17%;
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 20px;
}

.techrev-works-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.box-2 {
  margin-top: 110px !important;
}

.techrev-works {
  margin: 20px;
}

.techrev-works h3 {
  font-size: 64px;
}

.techrev-works h6 {
  font-size: 22px;
}

.techrev-works p {
  font-size: 16px;
  color: var(--dark-grey);
}

.satisfied-img,
.establishment-img {
  margin-top: -30px;
}

.get-start-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.available-text {
  font-size: 16px;
  color: var(--dark-grey);
}

/* AI Section */

.ai-title {
  text-align: center;
  font-size: 25px;
  line-height: 40px;
}

.ai-tech-div {
  border: 2px solid #FFFFFF26;
  border-radius: 10px;
  padding: 20px;
}

.ai-tech-div h5,
.web-div h5,
.ui-ux-div h5 {
  font-size: 17px;
  margin-top: 5px;
  font-weight: 500;
}

.ai-tech-div p,
.web-div p,
.ui-ux-div p {
  font-size: 17px;
  color: var(--dark-grey);
  margin-top: 5px;
  font-weight: 400;
}

.ai-tech-div img {
  display: block;
  margin: 0 auto;
  margin-bottom: 75px;
}

.ui-ux-div {
  background-image: url(../../../assets/images/home/ui-ux.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  height: 425px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 20px;
}

.web-div {
  background-image: url(../../../assets/images/home/web-dev.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  height: 470px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 20px;
}

.row-container {
  display: flex;
  align-items: center;
  gap: 20px;
}

.ai-tech-div {
  flex: 0 0 30%;
  max-width: 30%;
}

.ui-ux-div,
.web-div {
  flex: 1;
}

/* testimonial-section starts*/

.testimonial-section {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.story-result-title {
  color: white;
  font-size: 64px;
  font-weight: 600;
  text-align: center;
}

.card-1 {
  background-color: white;
  border-radius: 10px;
  color: black;
  padding: 20px;
}

.card-2 {
  background-color: #DEDEDE;
  border-radius: 10px;
  color: black;
  padding: 20px;
}

.testimonial-para {
  font-size: 20px;
  line-height: 34px;
  font-weight: 400;
  text-align: start;
}

.testimonial-name {
  display: flex;
  flex-direction: column;
  gap: -50px;
}

.testimonial-name h6 {
  font-size: 16px;
  font-weight: 500;
  margin: 2px;
}

.testimonial-name p {
  font-size: 16px;
  font-weight: 400;
  margin: 2px;
}

.card-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-candidate-details {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 20px;
}

.show-card-in-mobile {
  display: none;
}

/* FAQ section starts*/

.faq-container {
  color: white;
}

.faq-title {
  color: white;
  font-size: 64px;
  font-weight: 600;
  text-align: center;
  line-height: 80px;
}

.faq-para {
  color: #D9D9D9;
  font-weight: 400;
  font-size: 20px;
  line-height: 34px;
  text-align: center;
  margin: 40px 0px;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  padding: 15px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  display: none;
  padding: 0 15px 15px;
  color: #cccccc;
  font-size: 18px;
  line-height: 1.6;
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* ai-journey-section-starts */

.ai-journey-section {
  background-image: url(../../../assets/images/home/ai-journey.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 25px;
  border: 2px solid #FFFFFF1A;
  padding: 35px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.ai-journey-heading {
  color: white;
  font-size: 64px;
  font-weight: 700;
  text-align: center;
  line-height: 100px;
}

.ai-journey-para {
  color: white;
  font-size: 20px;
  line-height: 40px;
  text-align: center;
}

.primary-btn i {
  color: #ffffff;
}

.primary-btn:hover i {
  color: black;
}

/* Footer-desktop-style starts */

.footer-container {
  color: white;
}

.footer-border {
  border: 2px solid #FFFFFF1A;
  border-radius: 15px;
  padding: 20px 40px 10px 40px;
  display: flex;
  justify-content: space-between;
}

.footer-logo-location {
  display: flex;
  flex-direction: column;
  gap: 20px;

  p {
    /* line-height: 30px; */
    margin: 0px;
  }

  a {
    color: #fff;

    &:hover {
      color: var(--hover-grey);
    }
  }
}

.techrev-social-icons {
  display: flex;
  gap: 15px;

  img {
    cursor: pointer;
  }
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 25px;

  a {
    color: #fff;
    text-decoration: none;

    &:hover {
      color: var(--hover-grey);
    }
  }
  
}

.footer-list p, 
.footer-logo-location p, 
.footer-user-input p {
  font-size: 15px;
}

.footer-list-container {
  display: flex;
  gap: 75px;
  margin-top: 20px;
}

.email-input {
  margin-top: 20px;
  background-color: white;
  border: 1px solid white;
  border-radius: 5px;
  padding: 10px;
}

.footer-user-input {
  gap: 25px;
  margin-top: 20px;
}

.subscribe-btn {
  margin-top: 10px;
}

#Newsetter-email {
  border: 0;
  color: #191d26;
  font-weight: 500;
  min-height: 2.75rem;
  padding: 0.4rem;
}

.vertical-line {
  border-left: 2px solid #FFFFFF1A;
  height: 180px;
  margin: 20px 20px;
}

.vr-line {
  border-left: 2px solid #FFFFFF1A;
  height: 180px;
  margin: 0px 20px;
}

.email-break,
.ai-journey-para-br,
.faq-para-br {
  display: inline;
}

.alex-testimonial {
  margin-top: 200px;
}

.techrev-location {
  margin-top: -14px !important;
  }

  .docvoice-logo{
    height: 30px !important;
    width: 90px !important;
  }
  .keep-fluent-logo{
    height: 30px !important;
    width: 46px !important;
  }
  .enotary-logo{
    height: 30px !important;
    width: 117px !important;
  }
  .dew-logo{
    height: 30px !important;
    width: 84px !important;
  }
  .keep-fluent-logo{
    height: 30px !important;
    width: 46px !important;
  }
  .cubecare-logo{
    height: 30px !important;
    width: 110px !important;
  }
  .premier-logo{
    height: 30px !important;
    width: 110px !important;
  }
  .onboard-logo{
    height: 30px !important;
    width: 110px !important;
  }
  .donate-bucket-logo{
    height: 30px !important;
    width: 121px !important;
  }

  /* Contact Us Page */
.contact-us-body {
  padding-top: 75px;
  background-image: url(../../assets/images/Contact-us/conatct-us-bg.png);

  .contact-form-container {
    background-image: url(../../assets/images/Contact-us/form-bg.png);
    background-position: center;
    border-radius: 20px;
    border: 2px solid var(--light-grey);


    .support-container {
      display: flex;
      flex-wrap: wrap;
      border-radius: 8px;
      border: 2px solid var(--light-grey);
      

      .sales,
      .support {
        border-right: 1px solid #ffffff4d;
      }

      div {
        flex: 1;
        padding: 10px 25px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;

        p,
        a {
          color: #fff;
        }

        a {
          text-decoration: none;
          font-weight: 600;
          font-size: 25px;
          margin-top: 15px;
        }
      }
    }

    .form-container {

      div {
        /* flex: 1;
        gap: 20px; */

        h1 {
          font-size: 30px;
          text-align: left;
          margin: 0px;
        }

        p {
          color: #fff;
        }
      }

      .image-container {
        background-image: url(../../assets/images/Contact-us/astronaut.png);
        background-position: center;
        border-radius: 15px;
        height: 100vh;

        .txt {
          position: absolute;
          bottom: 10px;
        }
      }


    }
  }
}


/* Footer-desktop-style ends */

@media (max-width:767px) {


  .primary-btn {
  
  font-size: 14px;
  
}


  .ai-service-card {
      min-width: 90%; 
    }

    .techrev-card {
  h3 {
   font-size: 45px;
  }

  h6 {
  font-size: 15px;
  }

  p {
   font-size: 10px;
  }
}

.ai-tech-div h5,
.web-div h5,
.ui-ux-div h5 {
  font-size: 18px;
}

.ai-tech-div p,
.web-div p,
.ui-ux-div p {
  font-size: 16px;
}

  /* techrev-details-section */

  .techrev-detail-title {
    font-size: 16px;
    line-height: 26px;
  }

  .techrev-detail-title-div {
    margin: 0px;
  }

  .box-2 {
    margin-top: 90px !important;

  }

  .techrev-works {
    margin: 0px;
  }

  .techrev-works h3 {
    font-size: 44px;
  }

  .techrev-works h6 {
    font-size: 15px;
  }

  .techrev-works p {
    font-size: 11px;
  }

  .techrev-works img {
    width: 180px;
  }

  .techrev-works-section {
    margin: 20px 0px;
    grid-template-columns: repeat(2, 1fr);
  }

  /* AI Section */

  .ai-title {
    font-size: 16px;
    line-height: 26px;
    text-align: center;
  }

  .ai-tech-div {
    border: 2px solid #FFFFFF26;
    border-radius: 10px;
    padding: 20px;
  }

  .ai-tech-div img {
    display: block;
    margin: 0 auto;
    margin-bottom: 10px;
  }

  .ui-ux-div {
    background-image: url(../../../assets/images/home/ui-ux.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 200px 20px 20px 20px;
    width: 100%;
  }

  .web-div {
    background-image: url(../../../assets/images/home/web-dev.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    /* cover entire area */
    background-position: left center;
    /* keep centered */
    width: 100%;
    /* full width */
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 200px 20px 20px 20px;
  }
  .web-app-br{
   display: none;
    }

  .ai-tech-div {
    max-width: 100%;
  }

  .ui-ux-div,
  .web-div {
    flex: 1;
  }

  .row-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* vertical align */
  }


  /* testimonial-section starts*/

  .alex-testimonial {
  margin-top: 120px;
}



  .testimonial-section {
    display: flex;
    gap: 10px;
    margin-top: 20px;
  }

  .story-result-title {
    color: white;
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    line-height: 40px;
  }

  .card-1 {
    background-color: white;
    border-radius: 10px;
    color: black;
    padding: 10px;
  }

  .card-2 {
    background-color: #DEDEDE;
    border-radius: 10px;
    color: black;
    padding: 10px;
  }

  .testimonial-para {
    font-size: 10px;
    line-height: 17px;
    font-weight: 400;
    text-align: start;
  }

  .testimonial-name {
    display: flex;
    flex-direction: column;
    gap: -50px;
  }

  .testimonial-name h6 {
  font-size: 8px;
  font-weight: 500;
  margin: 2px;
}

.testimonial-name p {
  font-size: 8px;
  font-weight: 400;
  margin: 2px;
}

  .card-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .testimonial-candidate-details {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
  }

  .testimonial-img {
    height: 126px;
  }

  .hide-card-in-mobile {
    display: none;
  }

  .show-card-in-mobile {
    display: block;
  }

  /* FAQ section starts*/


  .faq-title {
    font-size: 32px;
    line-height: 40px;
  }

  .faq-para {
    font-size: 16px;
    line-height: 28px;
  }

  .faq-para-br {
    display: none;
  }
  .faq-question {
  font-size: 12px;
  font-weight: 400;
}

.faq-answer {
  font-size: 10px;
  line-height: 1.6;
}

  /* ai-journey-section-starts */

  .ai-journey-section {
  background-image: url(../../../assets/images/home/ai-journey-mobile.png);
}

    .ai-journey-heading-br {
      display: none;
    }
  
    .ai-journey-section {
  
      padding: 35px 10px;
    }

  .ai-journey-container {
    padding: 30px 20px;
  }

  .ai-journey-heading {
    font-size: 32px;
    line-height: 44px;
  }

  .ai-journey-para {
    font-size: 16px;
    line-height: 24px;
  }

  .ai-journey-para-br {
    display: none;
  }


  /* Footer-mobile-style starts */

  .footer-border {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .footer-logo-location {

    gap: 15px;
  }

  .footer-list-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    margin-top: 0px;
  }
  
  .footer-list-items {
    margin-left: -50px !important; 
  }

  .footer-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .vertical-line {
    border-left: none;
    border-top: 2px solid #FFFFFF1A;
    width: 100%;
    height: 0;
    margin: 20px auto;
  }

  .email-input {
    padding: 7px 0px 7px 7px;
    margin-right: 10px;
  }

  .email-break {
    display: none;
  }

  .vr-line {
    height: 140px;
    margin: 0px 10px;
    align-self: center;
  }

  /* Footer-mobile-style ends */
}

@media (min-width: 768px) and (max-width: 1024px) {

  /* FAQ section starts*/

  .faq-title {
    font-size: 38px;
    line-height: 50px;
  }

  .faq-para {
    font-size: 18px;
    line-height: 28px;
  }

  .faq-para-br {
    display: none;
  }

  /* ai-journey-section-starts */

  .ai-journey-container {
    padding: 30px 80px;
  }

  .ai-journey-heading {
    font-size: 38px;
    line-height: 50px;
  }

  .ai-journey-para {
    font-size: 18px;
    line-height: 24px;
  }

  .ai-journey-para-br {
    display: none;
  }

  /* Footer-tab-style starts */

  .footer-border {
    padding: 20px;
  }

  .footer-logo-location {
    gap: 20px;
  }

  .footer-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .footer-list-container {
    display: flex;
    gap: 20px;
  }


  .footer-user-input {
    gap: 20px;
  }

  .email-break {
    display: inline;
  }

  /* Footer-tab-style ends */
}


  #team-carousel {
    overflow: hidden;
    width: 100%;
  }

  .carousel-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
  }
  
  .carousel-track img {
  display: block;
}

/* Mobile (max-width: 767px) → show only 3 */
@media (max-width: 767px) {
  .carousel-track img {
    display: none; /* hide all */
  }
  .carousel-track img:nth-child(-n+3) {
    display: block; /* show only first 3 */
  }
}

.card-container {
    overflow: hidden;
    width: 100%;
    position: relative;
  }

  .cards-wrapper {
    display: flex;
    transition: transform 0.8s ease-in-out;
  }

@media only screen and (max-width: 992px) {
  header {
    margin: 0;
  }

  .teams-img {
    margin: 0;
  }

  .navbar {
    padding: 12px 0 !important;
  }
}

@media only screen and (max-width: 600px) {
  .header {
    margin-bottom: 0px;
    padding-top: 40px;

    h1 {
      font-size: 38px;
      line-height: 60px;
      margin: 0;
      font-weight: 600;
    }
  }

  .m-55 {
    margin: 0;
  }

  .custom-navbar {
    padding: 0 8px !important;
  }

  .navbar-collapse {
    padding: 10px !important;

    .primary-btn {
      margin: 10px 0;
    }
  }

  .canva,
  .ai-service {
    h1 {
      font-size: 32px;
      line-height: 50px;
    }
  }

  .teams-img {

    .echo-valley,
    .acme-corp {
      width: 170px;
      padding: 0 12px;
    }

    .apex,
    .pulse {
      width: 120px;
      padding: 0 12px;
    }

    .celestial,
    .quantum {
      width: 140px;
      padding: 0 12px;
    }

    .techrev-card {
      h3 {
        font-size: 50px;
      }

      h6 {
        font-size: 18px;
      }

      p {
        font-size: 13px;
        color: var(--dark-grey);
      }
    }
  }

  .header-container,
  .canva-container,
  .our-services,
  .techrev-details-container,
  .ai-software-section,
  .story-result-container,
  .bottom-container {
    background: none !important;
  }

  .home-body {
    background-image: url(../../../assets/images/home/home-background-mobile.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }

  .form-container {

    div {

      h1 {
        font-size: 25px;
      }

      p {
        color: #fff;
        font-size: 12px;
        margin-bottom: 0px;
      }
    }

    .image-container {
      background-image: url(../../assets/images/Contact-us/astronaut-mobile.png) !important;
      height: 30vh !important;

      .txt {
        position: absolute;
        bottom: 5px;
      }
    }
  }

  .support-container {
    .sales,
    .support {
      border-right: none !important;
      border-bottom: 1px solid #ffffff4d;
    }

    div {
      padding: 25px 10px !important;
    }
  }

  .contact-form-container {
    h1 {
      font-size: 26px !important;
      line-height: 50px;
    }
  }

}

@media (min-width: 391px) {
  .taylor-testimonial {
    margin-top: 132px !important;
  }
}

@media (max-width: 391px) {
  .taylor-testimonial {
    margin-top: 115px;
  }
}