@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;
}

.techrev-details-container,
.ai-software-section,
.story-result-container,
.bottom-container {
  color: white;
}

.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;
  background-image: url(../../assets/images/home/home-background.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.services-body {
  padding-top: 50px;
  background-image: url(../../assets/images/services/desktop-main-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.m-55 {
  margin: 55px 0;
}

.nav-container {
  background: var(--bg-dark) !important;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1200;
}

/* 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;
  position: relative;
  z-index: 1201;

  .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: 0;
}

.dropdown-submenu>.dropdown-toggle::after {
  content: "";
  border: none;
}

.custom-navbar .dropdown-submenu > .dropdown-toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-right: 2.75rem;
}

.custom-navbar .dropdown-submenu > .dropdown-toggle .submenu-toggle-indicator {
  margin-left: auto;
  color: #111827;
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1;
  flex: 0 0 auto;
}

.custom-navbar .dropdown-submenu > .dropdown-toggle[aria-expanded="true"] .submenu-toggle-indicator {
  color: #ffffff;
}

.dropdown-item:hover,
.dropdown-item:active {
  background-color: #000 !important;
  color: #fff !important;
}

.custom-navbar .dropdown-menu {
  border: none !important;
  z-index: 1205;
}

#navbar-container .custom-navbar .dropdown-item > i,
#navbar-container .custom-navbar .dropdown-item > .fa-solid,
#navbar-container .custom-navbar .dropdown-item > .fa-brands,
#navbar-container .custom-navbar .dropdown-item > .fas {
  color: #5b5cf0 !important;
  transition: color 0.2s ease;
}

#navbar-container .custom-navbar .dropdown-item:hover > i,
#navbar-container .custom-navbar .dropdown-item:hover > .fa-solid,
#navbar-container .custom-navbar .dropdown-item:hover > .fa-brands,
#navbar-container .custom-navbar .dropdown-item:hover > .fas,
#navbar-container .custom-navbar .dropdown-item:focus > i,
#navbar-container .custom-navbar .dropdown-item:focus > .fa-solid,
#navbar-container .custom-navbar .dropdown-item:focus > .fa-brands,
#navbar-container .custom-navbar .dropdown-item:focus > .fas,
#navbar-container .custom-navbar .dropdown-item:active > i,
#navbar-container .custom-navbar .dropdown-item:active > .fa-solid,
#navbar-container .custom-navbar .dropdown-item:active > .fa-brands,
#navbar-container .custom-navbar .dropdown-item:active > .fas {
  color: #7a7bff !important;
}

@media (min-width: 1200px) {
  .custom-navbar .navbar-nav > .nav-item.dropdown {
    position: static;
  }

  .custom-navbar .navbar-nav > .nav-item.dropdown.dropdown-local {
    position: relative;
  }

  .custom-navbar .nav-item.dropdown > .dropdown-menu,
  .custom-navbar .dropdown-submenu > .dropdown-menu {
    display: none;
  }

  .custom-navbar .services-mega-menu,
  .custom-navbar .industry-mega-menu,
  .custom-navbar .solutions-mega-menu {
    position: absolute;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: min(980px, calc(100vw - 48px));
    padding: 18px;
    display: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px 18px;
    align-items: start;
    text-align: left;
    border-radius: 16px;
    background-color: #fff;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.22);
  }

  .custom-navbar .industry-mega-menu {
    width: min(760px, calc(100vw - 48px));
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .custom-navbar .solutions-mega-menu {
    width: min(980px, calc(100vw - 48px));
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .custom-navbar .services-mega-menu.show,
  .custom-navbar .industry-mega-menu.show,
  .custom-navbar .solutions-mega-menu.show,
  .custom-navbar .navbar-nav > .nav-item.dropdown:hover > .services-mega-menu,
  .custom-navbar .navbar-nav > .nav-item.dropdown:hover > .industry-mega-menu,
  .custom-navbar .navbar-nav > .nav-item.dropdown:hover > .solutions-mega-menu {
    display: grid;
  }

  .custom-navbar .services-mega-menu.show[data-bs-popper],
  .custom-navbar .industry-mega-menu.show[data-bs-popper],
  .custom-navbar .solutions-mega-menu.show[data-bs-popper] {
    inset: calc(100% - 10px) auto auto 50% !important;
    left: 50% !important;
    right: auto !important;
    top: calc(100% - 10px) !important;
    transform: translateX(-50%) !important;
    margin-top: 0 !important;
  }

  .custom-navbar .nav-item.dropdown > .dropdown-menu.show,
  .custom-navbar .navbar-nav > .nav-item.dropdown:hover > .dropdown-menu {
    display: block;
  }

  .custom-navbar .nav-item.dropdown.dropdown-local > .dropdown-menu {
    position: absolute;
    left: 50%;
    right: auto;
    top: calc(100% + 2px);
    transform: translateX(-50%);
    width: max-content;
    min-width: 210px;
    padding: 10px;
    border-radius: 14px;
    background-color: #fff;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.24);
  }

  .custom-navbar .nav-item.dropdown.dropdown-local > .resources-dropdown-menu > li > .dropdown-item {
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 10px;
    white-space: nowrap;
  }

  .custom-navbar .dropdown-submenu > .dropdown-menu.show,
  .custom-navbar .dropdown-submenu:hover > .dropdown-menu {
    display: block;
  }

  .custom-navbar .services-mega-menu {
    position: absolute;
  }

  .custom-navbar .dropdown-submenu {
    position: static;
  }

  .custom-navbar .dropdown-submenu > .dropdown-menu {
    position: absolute;
    left: 50%;
    right: auto;
    top: var(--submenu-anchor-top, 0px);
    transform: translateX(-50%) translateY(var(--submenu-offset-y, 0px));
    width: min(760px, calc(100vw - 120px));
    padding: 18px;
    display: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px 22px;
    align-items: start;
    text-align: left;
    border-radius: 16px;
    background-color: #fff;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.28);
  }

  .custom-navbar .dropdown-submenu > .dropdown-menu.show,
  .custom-navbar .dropdown-submenu.submenu-active > .dropdown-menu,
  .custom-navbar .dropdown-submenu:hover > .dropdown-menu {
    display: grid;
  }

  .custom-navbar .services-mega-menu .dropdown-submenu > .dropdown-menu {
    width: min(860px, calc(100vw - 120px));
    padding: 22px;
  }

  .custom-navbar .services-mega-menu .hire-dev-submenu > .dropdown-menu {
    top: var(--submenu-anchor-top, 0px);
  }

  .custom-navbar .services-mega-menu .dropdown-submenu > .dropdown-menu.show,
  .custom-navbar .services-mega-menu .dropdown-submenu.submenu-active > .dropdown-menu,
  .custom-navbar .services-mega-menu .dropdown-submenu:hover > .dropdown-menu {
    display: grid;
  }

  .custom-navbar .nav-item.dropdown > .services-mega-menu.show,
  .custom-navbar .nav-item.dropdown > .industry-mega-menu.show,
  .custom-navbar .nav-item.dropdown > .solutions-mega-menu.show,
  .custom-navbar .navbar-nav > .nav-item.dropdown:hover > .services-mega-menu,
  .custom-navbar .navbar-nav > .nav-item.dropdown:hover > .industry-mega-menu,
  .custom-navbar .navbar-nav > .nav-item.dropdown:hover > .solutions-mega-menu,
  .custom-navbar .dropdown-submenu:hover > .services-mega-menu,
  .custom-navbar .dropdown-submenu:hover > .industry-mega-menu,
  .custom-navbar .dropdown-submenu:hover > .solutions-mega-menu {
    display: grid;
  }

  .custom-navbar .dropdown-submenu:hover > .services-mega-menu,
  .custom-navbar .dropdown-submenu:hover > .industry-mega-menu,
  .custom-navbar .dropdown-submenu:hover > .solutions-mega-menu {
    display: grid;
  }

  .custom-navbar .services-mega-menu > li,
  .custom-navbar .industry-mega-menu > li,
  .custom-navbar .solutions-mega-menu > li {
    min-width: 0;
  }

  .custom-navbar .services-mega-menu > li > .dropdown-item,
  .custom-navbar .services-mega-menu > li > .dropdown-toggle,
  .custom-navbar .industry-mega-menu > li > .dropdown-item,
  .custom-navbar .solutions-mega-menu > li > .dropdown-item,
  .custom-navbar .solutions-mega-menu > li > .dropdown-toggle {
    min-height: 48px;
    padding: 12px 14px;
    border-radius: 12px;
  }

  .custom-navbar .services-mega-menu .dropdown-submenu > .dropdown-menu > li > .dropdown-item {
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 10px;
  }

  .custom-navbar .dropdown-submenu > .dropdown-menu > li {
    min-width: 0;
  }

  .custom-navbar .dropdown-submenu > .dropdown-menu > li > .dropdown-item {
    display: block;
    width: 100%;
    min-width: 0;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .custom-navbar .solutions-mega-menu .dropdown-submenu > .dropdown-menu {
    width: min(920px, calc(100vw - 120px));
  }

  /* Keep long child menus (e.g., Hire Dedicated Developers) scrollable on hover */
  .custom-navbar .dropdown-submenu > .dropdown-menu {
    max-height: min(55vh, 520px);
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .custom-navbar .hire-dev-submenu > .dropdown-menu {
    top: var(--submenu-anchor-top, 0px);
  }
  .ai-para{
  font-size: 18px !important;
  margin-top: 10px;
}
}

.primary-btn {
  color: #fff;
  border: 2px solid #554FF1;
  border-radius: 5px;
  padding: 6px 15px;
  font-size: 20px;
  background-color: #554FF1 !important;
  cursor: pointer;
  text-decoration: none !important;

  &:hover {
    background-color: #fff !important;
    border-color: #ffffff !important;
    color: black;
    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;
}

.info-new {
  background-color: #fff;
  color: #000;
  padding: 2px 4px;
  border-radius: 25px;
  font-size: 11px;
  font-weight: 600;
}

.info-heading {
  margin: 0;
  font-size: 18px;
}

.navbar-title {
  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-heading {
  color: white;
  text-align: center;
}

.canva,
.ai-service,
.contact-form-container {
  h1 {
    text-align: center;
    color: #fff;
    font-size: 64px;
    line-height: 80px;
    font-weight: 600;
  }
}

.header-t {
  color: #fff;
  font-size: 80px;
  line-height: 100px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 60px;
}

.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;
  }
}

.card-title {
  font-size: 19px;
  line-height: 27px;
  color: white !important;
}

.card-gap {
  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;
  }


}

.techrev-card 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;
}

.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: 100% 100%;
  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: 100% 100%;
  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*/

.story-result {
  align-items: stretch;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 8px;
  margin-top: 50px;
}

.story-result>div {
  height: 100%;
  /* let child div take full grid area */
}

.story-result>div>* {
  height: 100%;
  /* make card/image fill parent grid cell */
}

.story-result-div1 {
  grid-column: span 2 / span 2;
  grid-row: span 4 / span 4;
}

.story-result-div2 {
  grid-column: span 2 / span 2;
  grid-row: span 2 / span 2;
  grid-column-start: 1;
  grid-row-start: 5;
}

.story-result-div3 {
  grid-column: span 2 / span 2;
  grid-row: span 2 / span 2;
  grid-column-start: 3;
  grid-row-start: 1;
}

.story-result-div4 {
  grid-column: span 2 / span 2;
  grid-row: span 4 / span 4;
  grid-column-start: 3;
  grid-row-start: 3;
}

.story-result-div5 {
  grid-column: span 2 / span 2;
  grid-row: span 4 / span 4;
  grid-column-start: 5;
  grid-row-start: 1;
}

.story-result-div6 {
  background: url(../../assets/images/home/testimonial-web.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 97%;
  grid-column: span 2 / span 2;
  grid-row: span 3 / span 3;
  grid-column-start: 5;
  grid-row-start: 5;
  margin-top: -5px !important;
}

.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 p{
  line-height: 20px;
}

.footer-logo-location {
  display: flex;
  flex-direction: column;

  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-items {
  color: #fff;
  text-decoration: none;
}

.footer-list-items:hover {
  color: var(--hover-grey);
}

.fa-square-facebook,
.fa-linkedin,
.fa-square-instagram,
.fa-square-x-twitter {
  color: white;
}

.footer-list p,
.footer-logo-location p,
.footer-user-input p {
  font-size: 15px;
}

.footer-list-container {
  display: flex;
  gap: 35px;
  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: 290px;
  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;
} */
.techrev-location{
  color: yellow;
}

.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);
  }

  .form-container {

      div {
        /* flex: 1;
        gap: 20px; */

        h1 {
          font-size: 30px;
          text-align: left;
          margin: 0px;
          font-weight: 600;
        }

        p {
          color: #fff;
          font-size: 16px;
        }
      }

      
    }

    .image-container {
        background-image: url(../../assets/images/Contact-us/astronaut.png);
        background-position: center;
        border-radius: 15px;
        height: auto; 
      }
      .txt {
          position: absolute;
          bottom: 10px;
        }

  .support-container {
      display: flex;
      /* flex-wrap: wrap; */
      border-radius: 8px;
      border: 2px solid var(--light-grey);
      background-color: rgba(255, 255, 255, 0.055);

    }

    .support-container div {
        flex: 1;
        padding: 10px 25px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;

        
      }

      .touch p, .support p, .sales p {
          color: #fff;
        }

        .touch a, .support a, .sales a  {
          color: #fff;
          text-decoration: none;
          font-weight: 600;
          font-size: 25px;
        }

    .sales,
      .support {
        border-right: 1px solid #ffffff4d;
      }


/* Footer-desktop-style ends */

/* ------------------------- service page styles ------------------------------------- */

.android-app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 100px;
}

.services-heading{
  font-size: 48px;
  font-weight: 600;
  line-height: 60px;
}
.services-paragraph{
  font-size: 20px;
  font-weight: 300;
  line-height: 26px;
  margin-top: 20px;
}
.arrow-btn{
  background-color: #554FF1;
  padding: 7px 25px;
  border-radius: 50px;
}
.service-get-start{
  font-size: 25px;
  font-weight: 600;
}

.services-header-titles{
  margin-left: 40px !important;
}

.android-app-services{
  color: #fff;
  background-color: #090B26;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 80px 50px;
  overflow: hidden;

  /* Cut top-right corner */
  clip-path: polygon(
    0 0,
    calc(100% - 120px) 0,
    100% 120px,
    100% 100%,
    0 100%
  );
}

.service-sec-subtitle{
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  line-height: 50px;
  color: white;
}
.service-sec-paragraph{
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  line-height: 28px;
  color: white;
}

.cross-box{
  padding: 30px 60px;
}

.service-card h5{
  font-size: 24px;
  font-weight: 400;
  margin: 15px 0px;
}
.service-card p{
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
}

.about-android-app{
  background-image: url(../../assets/images/services/sub-bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.service-get-start-btn{
  background-color: #554FF1 !important;
  color: white !important;
  font-size: 20px;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  text-align: center;
}

.service-get-start-btn a{
  color: white;
  font-size: 20px;
  text-decoration: none;
  text-align: center;
}

.android-app-work-box{
  background-image: url(../../../assets/images/services/box-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    padding: 80px 60px 10px 30px ;
}

.industry-bg{
  background-image: url(../../../assets/images/services/industry-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
}


.android-app-works-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.android-app-work-box h5{
  font-size: 22px;
  font-weight: 600;
}

.android-app-work-box p{
  color: #999999;
  font-size: 18px;
  font-weight: 500;
  margin-top: 15px;
}

.certifications-box {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px; 
}

.certifications-box img {
  width: 100px;
}
/* Container */
.industries-boxes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 90px;
  margin-top: 20px;
}
.industries-box{
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  border: 1px solid #FFFFFF33;
  border-radius: 0px 30px 0px 30px;
  background-color: rgba(255, 255, 255, 0.125);
  padding: 50px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.industries-box h6{
  font-size: 24px;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 0;
  min-height: 2.6em;
  line-height: 1.3;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gain-box{
  background-color: #030927;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0px 8px 25px rgba(3, 9, 39, 0.6);

}

.gain-box h6{
  font-size: 22px;
  font-weight: 700;
  margin-top: 15px;
}

.gain-box p{
  font-size: 18px;
  color: #999999;
}

.gain-section{
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.gain-section-inner{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px
}

.gain-last-section{
  background-color: #030927;
  border-radius: 10px;
  padding: 5px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px
}


.row-50 .gain-box {
  flex: 0 0 calc(50% - 12px);
}

.row-60 .gain-box:first-child {
  flex: 0 0 calc(60% - 12px);
}

.row-60 .gain-box:last-child {
  flex: 0 0 calc(40% - 12px);
}

.tools-slider {
  overflow: hidden;
  width: 100%;
  position: relative;
  margin: 30px 0px;
}

.tools-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollLeft 25s linear infinite;
}

.tools-track img {
  height: 60px;
  width: auto;
}

/* Animation */
@keyframes scrollLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.tools-track:hover {
  animation-play-state: paused;
}

.step-box{
  border: 1px solid #A1AEBF;
  border-radius: 3px;
  padding: 15px;
}

.step-box img{
  width: 100%;
  height: auto;
}

.step-box p{
  font-size: 16px;
  margin-top: 20px;
}

.step-box h5{
  font-size: 22px;
  font-weight: 700;
  margin: 20px 0px;
}

.step-box h6{
  font-size: 18px;
  color: #999999;
  font-weight: 500;
  line-height: 24px;
}

.service-list{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  border: 1px solid #1C1C21;
  border-radius: 10px;
  padding: 10px;
}

.service-list h6{
  color: #AFB0B6;
  margin-top: 7px;
}
.service-subtitle{
  font-size: 22px;
  font-weight: 500;
}
.service-highlight-section{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.blog-box{
  background-color: #110D13;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-box img{
  width: 100%;
  height: auto;
  object-fit: contain;
}

.blog-content{
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-content p{
  font-size: 14px;
  color: #554FF1;
}

.blog-content h3{
  font-size: 22px;
  line-height: 40px;
  margin: 0px 0px 20px 0px;
}

.blog-content h3 a{
  text-decoration: none;
}

.blog-content h6{
  font-size: 14px;
  color: #716678;
  line-height: 24px;
}

.get-start-section {
  display: flex;
  align-items: center;        /* Vertical center */
  justify-content: center;    /* Horizontal alignment */
  margin-left: 60px;
}

/* Left side 60% */
.content-left {
  flex: 0 0 65%;
  max-width: 65%;
}

/* Right side 40% */
.content-right {
  flex: 0 0 35%;
  max-width: 35%;
  display: flex;
  justify-content: center;  
  align-items: center;      
}

.benefit-item-list h6{
  font-size: 18px;
}


.benefit-item-list p{
  font-size: 16px;
  font-weight: 400;
}



/* ------------------------- service page styles end ------------------------------------- */


@media (min-width: 700px) and (max-width: 1035px) {

  /* ------------------------- service Tab page styles ------------------------------------- */

  .services-body {
  padding-top: 50px;
  background-image: url(../../assets/images/services/desktop-main-bg-mobile.png);
  background-repeat: no-repeat;
  background-size: cover;
}

  .android-app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.header-img{
  width: 320px;
}

.services-heading{
  font-size: 24px;
  line-height: 30px;
}
.services-paragraph{
  font-size: 11px;
  line-height: 14px;
}
.arrow-btn{
  background-color: #554FF1;
  padding: 5px 20px;
  border-radius: 50px;
}
.service-get-start{
  font-size: 12px;
}
.android-icon{
  width: 50px;
}
.services-header-titles{
  margin-left: 30px !important;
}


.android-app-services{

  /* Cut top-right corner */
  clip-path: polygon(
      0 0,
      calc(100% - 80px) 0,
      100% 80px,
      100% 100%,
      0 100%
      )
}

.service-sec-subtitle{
  font-size: 21px;
  line-height: 28px;
}
.service-sec-paragraph{
  font-size: 11px;
  line-height: 14px;
}

.cross-box{
  padding: 20px 30px;
}

.service-card h5{
  font-size: 12px;
  margin: 10px 0px;
}
.service-card p{
  font-size: 8px;
  line-height: 160%;
}

.service-card img{
  width: 30px;
}

.android-app-work-box{
    padding: 40px 10px 5px 10px ;
}

.android-app-work-box h5{
  font-size: 12px;
}

.android-app-work-box p{
  font-size: 10px;
}

.certifications-box {
  gap: 20px; 
}
.certifications-box img {
    max-width: 100px;
  }

  .certifications-box {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px; 
}


/* Container */
.industries-boxes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  margin-top: 20px;
}
.industries-box{
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: 20px;
  min-height: 140px;
}
.industries-box img{
  width: 50px;
}
.industries-box h6{
  font-size: 12px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 0;
  min-height: 2.6em;
  line-height: 1.3;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}



.gain-box h6{
  font-size: 11px;
}

.gain-box p{
  font-size: 10px;
}

.gain-section{
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.gain-section-inner{
  gap: 10px
}

.gain-last-section{
  background-color: #030927;
  border-radius: 10px;
  padding: 5px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px
}

.step-box p{
  font-size: 9px;
  margin-top: 10px;
}

.step-box h5{
  font-size: 12px;
  margin: 10px 0px;
}

.step-box h6{
  font-size: 10px;
  line-height: 13px;
}


.service-list{
  gap: 10px;
  border: 1px solid #1C1C21;
  border-radius: 10px;
  padding: 10px;
}

.service-list h6{
  font-size: 10px;
}
.service-subtitle{
  font-size: 12px;
}
.service-highlight-section{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.service-highlight-section > div {
  flex: 0 0 calc(50% - 15px);
}
.service-paragraph{
  font-size: 10px;
}

.blog-content{
  padding: 20px;
}

.blog-content p{
  font-size: 8px;
}

.blog-content h3{
  font-size: 12px;
  line-height: 20px;
  margin: 0px 0px 12px 0px;
}

.blog-content h6{
  font-size: 8px;
  line-height: 16px;
}

.blog-box img{
  height: auto;
}

.benefit-item-list h6{
  font-size: 16px;
}


.benefit-item-list p{
  font-size: 14px;
  font-weight: 400;
}


   /* ------------------------- service Tab page styles end ------------------------------------- */


  .home-body {
    background-image: url(../../../assets/images/home/home-background-mobile.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }

  .techrev-navbar-logo {
    width: 120px;
  }

  .header {
    padding-top: 70px;
    color: #fff;
  }

  .header-t {
    font-size: 42px;
    line-height: 56px;
    font-weight: 600;
    text-align: center;
    margin: 10px 0px;
  }

  .header-title-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .header-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .carousel-track img {
    display: none !important;
  }

  .carousel-track img:nth-child(-n+4) {
    display: block !important;
  }

  .ai-image-tab {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .canva-heading,
  .ai-service-h1,
  .contact-form-container {
    font-size: 33px !important;
    line-height: 40px !important;

  }

  .ai-service p {
    line-height: 14px;
    font-size: 9px !important;
  }

  .ai-service-card {
    flex: 0 0 20% !important;
    /* 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;
  }

  .card-list {
    font-size: 8px !important;
    line-height: 11px !important;
  }

  .card-title {
    font-size: 12px !important;
    line-height: 14px !important;
  }

  /* techrev-details-section */

  .techrev-detail-title {
    font-size: 14px;
    line-height: 20px;
    padding-top: 8px;
  }

  .techrev-card h3 {
    font-size: 33px;
    font-weight: 400;
  }

  .techrev-card h6 {
    font-size: 12px;
    font-weight: 400;
  }

  .techrev-card p {
    font-size: 8px;
  }


  .ai-title {
    font-size: 15px;
    font-weight: 500;
    line-height: 25px;
    margin: 0px 50px;
  }

  .row-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .ai-tech-div {
    display: flex;
    max-width: 100%;
    justify-content: flex-start;
    align-items: center;
    gap: 120px;

  }

  .ui-ux-div {
  background-image: url(../../../assets/images/home/ui-ux-tab.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 150px 20px 20px 20px;
  width: 100%;
  height: 230px;
  margin-top: 20px;
}
.logos{
  margin-left: 25px !important;
}

.web-div {
  background-image: url(../../../assets/images/home/web-dev-tab.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 150px 20px 20px 20px;
  width: 100%;
  height: 230px;
  margin-bottom: 20px;
}

  .ai-tech-div img {
    margin-bottom: 0px;
    width: 160px;
  }

  .ai-tech-div h5,
  .ui-ux-div h5,
  .web-div h5 {
    font-size: 12px;
    font-weight: 500;

  }

  .ai-tech-div p,
  .ui-ux-div p,
  .web-div p {
    font-size: 10px;
    font-weight: 400;
  }

  .story-result-title {
    font-size: 33px;
    font-weight: 600;
  }

  .testimonial-para {
    font-size: 10px;
    line-height: 17px;
  }

  .testimonial-name {
    gap: -50px;
  }

  .testimonial-name h6 {
    font-size: 9px;

  }

  .testimonial-name p {
    font-size: 9px;

  }

  .testimonial-candidate-details {
    gap: 10px;
  }

  /* FAQ section starts*/

  .faq-title {
    font-size: 33px;
    font-weight: 600;
    line-height: 40px;
  }

  .faq-para {
    font-size: 14px;
    line-height: 24px;
    margin: 15px 0px;
  }

  .faq-para-br {
    display: block;
  }

  .faq-question {
    font-size: 12px;
  }

  .faq-answer {
    font-size: 10px;
  }

  /* ai-journey-section-starts */

  .ai-journey-container {
    padding: 30px 80px;
    margin-top: 30px;
  }


  .ai-journey-heading {
    font-size: 33px;
    line-height: 40px;
  }

  .ai-journey-para {
    font-size: 12px;
    line-height: 20px;
  }

  .ai-journey-para-br {
    display: block;
  }

  .try-for-free-btn,
  .get-started-btn {
    font-size: 12px;
    border-radius: 8px !important;
    /* margin-right: 20px; */
  }
  

  .talk-to-btn {
    font-size: 12px;
    font-weight: 400;
  }

  .business-word {
    background: linear-gradient(to bottom,
        rgba(153, 153, 153, 1) 35%,
        rgba(153, 153, 153, 1) 50%,
        rgba(153, 153, 153, 1) 50%,
        rgba(255, 255, 255, 1) 100%);

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
  }



  /* Footer-tab-style starts */

  .footer-border {
    padding: 20px;
  }

  /* .footer-logo-location {
    gap: 15px;
  } */

  .footer-logo-location p {
    margin: 0px;
    
  }

  .footer-list {
    display: flex;
    flex-direction: column;
    gap: 0px;
  }

  .list-1{
    margin-right: 45px;
    margin-left: 40px;
  }
  .list-2{
    margin-left: 25px;
    margin-right: 30px;
  }

  .list-1 a{
    margin-bottom: 20px;
  }
  .list-2 a{
    margin-bottom: 20px;
  }

  .footer-user-input {
    gap: 20px;
  }

  .email-break {
    display: inline;
  }

  .footer-list p,
  .footer-logo-location p,
  .footer-user-input p {
    font-size: 8px;
  }

  .footer-list a {
    font-size: 8px;
  }

  .footer-list-container {
    display: flex;
    gap: 0px;
    /* margin-top: 20px; */
  }

  .vertical-line {
    border-left: 2px solid #FFFFFF1A;
    height: 200px;
    margin: 20px 10px;
  }

  .vr-line {
    border-left: 2px solid #FFFFFF1A;
    height: 70px;
    margin: 20px 30px;

  }

  .subs-btn {
    font-size: 12px;
    padding: 5px;
    border-radius: 8px;
  }

  #Newsetter-email {
    border: 0;
    color: #191d26;
    font-weight: 400;
    min-height: 0rem;
    padding: 0.4rem;
  }

  /* Footer-tab-style ends */

  
}

@media (min-width:700px) and (max-width:819px) {
  .android-app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.header-img{
  width: 250px;
}
}

@media (min-width:700px) and (max-width:900px) {
  .certifications-box {
  gap: 20px; 
}
.certifications-box-img {
    max-width: 70px !important;
    max-height: 70px;
  }
  .gain-box{

  padding: 10px;

}
.gain-box img{
  width: 25px;
}

  .gain-box h6{
  font-size: 10px;
}

.gain-box p{
  font-size: 8px;
}

.gain-section{
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.gain-section-inner{
  gap: 10px
}
}

@media (max-width:700px) {

  /* ------------------------- service mobile page styles ------------------------------------- */

  .services-body {
  padding-top: 50px;
  background-image: url(../../assets/images/services/desktop-main-bg-mobile.png);
  background-repeat: no-repeat;
  background-size: cover;
}

  .android-app-header {
  display: flex;
  flex-direction: column;
  gap: 30px;
  
}
.services-header-titles{
  margin-left: 0px;
}


.services-heading{
  font-size: 24px;
  line-height: 30px;
}
.services-paragraph{
  font-size: 14px;
  line-height: 20px;
}
.arrow-btn{
  background-color: #554FF1;
  padding: 3px 20px;
  border-radius: 50px;
}
.service-get-start{
  font-size: 14px !important;
}
.android-icon{
  width: 50px;
}
.services-header-titles{
  margin-left: 0px !important;
}

.android-app-services{

  /* Cut top-right corner */
  clip-path: polygon(
      0 0,
      calc(100% - 50px) 0,
      100% 50px,
      100% 100%,
      0 100%
      )
}

.service-sec-subtitle{
  font-size: 18px;
  line-height: 24px;
}
.service-sec-paragraph{
  font-size: 12px;
  line-height: 16px;
}

.cross-box{
  padding: 10px;
}

.service-card h5{
  font-size: 14px;
  margin: 10px 0px;
}
.service-card p, .read-more-btn{
  font-size: 12px;
  line-height: 160%;
}

.service-card img{
  width: 30px;
}

.service-get-start-btn a{
  font-size: 17px;
}

.service-get-start-btn {
  padding: 5px 10px;
  width: 100%;
}

.get-strt-btn{
  margin: 15px 0px !important;
}

.android-app-works-boxes {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .android-app-work-box{
    padding: 60px 10px 5px 10px ;
}

.android-app-work-box h5{
  font-size: 14px;
}

.android-app-work-box p{
  font-size: 12px;
}

.certifications-box {
  gap: 20px; 
}
.certifications-box img {
    flex: 0 0 25%;  
    max-width: 70px;
  }

.industries-boxes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
  margin-top: 0px;
}
.industries-box{
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: 10px;
  min-height: 104px;
  border-radius: 0px 10px 0px 10px;
}
.industries-box img{
  width: 25px;
}
.industries-box h6{
  font-size: 10px;
  margin-top: 10px;
  margin-bottom: 0;
  min-height: 2.6em;
  line-height: 1.3;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gain-box{
  border-radius: 6px;
  padding: 10px;
}

.gain-box h6{
  font-size: 12px;
}

.gain-box img{
  width: 18px;
}

.gain-box p{
  font-size: 10px;

}

.gain-section{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}

.gain-section-inner{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.gain-last-section{
  display: flex;
  flex-direction: row;
  gap: 30px
}

.tools-slider {
  margin: 20px 0px;
}

.tools-track {
  gap: 10px;
}

.tools-track img {
  height: 40px;
}
.step-box{
  padding: 8px;
}
.step-box p{
  font-size: 8px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.step-box h5{
  font-size: 14px;
  margin-bottom: 10px;
  margin-top: 0px;
}

.step-box h6{
  font-size: 12px;
  line-height: 13px;
}

.service-list{
  gap: 10px;
  border: 1px solid #1C1C21;
  border-radius: 10px;
  padding: 10px;
}

.service-list h6{
  font-size: 12px;
}
.service-subtitle{
  font-size: 14px;
}
.service-highlight-section{
  display: flex;
  flex-direction: column-reverse;
  gap: 20px;
}
.service-paragraph{
  font-size: 12px;
}

.blog-content{
  padding: 30px;
}

.blog-content p{
  font-size: 15px;
}

.blog-content h3{
  font-size: 24px;
  line-height: 40px;
  margin: 0px 0px 12px 0px;
}

.blog-content h6{
  font-size: 15px;
}

.get-start-section {
    flex-direction: column;
    text-align: center;
    margin-left: 0px;
  }

  .content-left,
  .content-right {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .content-right {
    margin-top: 0px;
    width: 100%;
  }

  .about-android-app{
  background-image: url(../../assets/images/services/sub-bg-mobile1.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.benefit-item-list h6{
  font-size: 16px;
}


.benefit-item-list p{
  font-size: 12px;
  font-weight: 400;
}

/* ------------------------------------------   service mobile page styles end -------------------------------------- */


  .home-body {
    background-image: url(../../../assets/images/home/home-background-mobile.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }

  .techrev-navbar-logo {
    width: 120px;
  }

  .header-t {
    font-size: 38px;
    line-height: 60px;
    font-weight: 600;
    margin: 10px 0px;
  }


  .primary-btn {
    font-size: 14px;
  }

  .try-for-free-btn,
  .get-started-btn {
    border-radius: 10px !important;
    text-decoration: none;
    font-size: 16px;
  }

  .available-text {
    font-size: 14px;
  }


  .ai-service-card {
    min-width: 75%;
    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;

  }

  .techrev-card h3 {

    font-size: 45px;
  }

  .techrev-card h6 {
    font-size: 15px;
  }

  .techrev-card 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: 260px 20px 20px 20px;
    width: 100%;
  }

  .web-div {
    background-image: url(../../../assets/images/home/web-dev.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: left center;
    width: 100%;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 260px 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;
  }

  .story-result {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(8, 1fr);
    gap: 8px;
  }

  .story-result-div1 {
    grid-column: span 3 / span 3;
    grid-row: span 4 / span 4;
  }

  .story-result-div2 {
    grid-column: span 3 / span 3;
    grid-row: span 2 / span 2;
    grid-column-start: 1;
    grid-row-start: 5;
  }

  .story-result-div3 {
    grid-column: span 3 / span 3;
    grid-row: span 2 / span 2;
    grid-column-start: 1;
    grid-row-start: 7;
  }

  .story-result-div4 {
    grid-column: span 3 / span 3;
    grid-row: span 2 / span 2;
    grid-column-start: 4;
    grid-row-start: 1;
  }

  .story-result-div5 {
    grid-column: span 3 / span 3;
    grid-row: span 4 / span 4;
    grid-column-start: 4;
    grid-row-start: 3;
  }

  .story-result-div6 {
    background: url(../../assets/images/home/testimonial-web.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 98%;
    margin-top: 0px !important;
    grid-column: span 3 / span 3;
    grid-row: span 2 / span 2;
    grid-column-start: 4;
    grid-row-start: 7;
  }



  .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: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
      column-gap: 70px;
    }


  .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: 700px) and (max-width: 740px) {
  .list-1{
    margin-right: 15px;
    margin-left: 15px;
  }
  .list-2{
    margin-left: 15px;
    margin-right: 15px;
  }
}


.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;
  }

  .carousel-track img:nth-child(-n+3) {
    display: block;
  }
}

.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: 700px) {
  .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;
      }
    }

    
  }
  .image-container {
      background-image: url(../../assets/images/Contact-us/astronaut-mobile.png) !important;
      height:30vh !important;

      
    }
    .txt {
        position: absolute;
        bottom: 5px;
      }

  .sales,
    .support {
      border-right: none !important;
      border-bottom: 1px solid #ffffff4d;
    }

  .contact-form-container h1 { 
      font-size: 26px !important;
      line-height: 50px;
  }

}

@media (min-width: 412px) {
  .taylor-testimonial {
    margin-top: 132px !important;
  }
}

@media (max-width: 412px) {
  .taylor-testimonial {
    margin-top: 115px;
  }
}

@media(min-width:496px) {
  .josh-mobile {
    margin-top: 31px;
  }
}

@media (min-width:1025px) {
  .ai-journey-container {
    margin: 100px 0px 60px 0px;
  }

  .try-for-free-btn,
  .get-started-btn,
  .subs-btn {
    border-radius: 10px !important;
  }
}

.form-box{
  color: white !important;
  background-color: transparent !important;
  border: 2px solid #ffffff48 !important;
}
.form-box::placeholder {
  color: #FFFFFF99 !important;
  opacity: 1 !important;
}

/* Make select box background transparent */
#country {
  background-color: transparent !important;
  color: #495057; /* text color */
}

/* For option list */
#country option {
  background-color: transparent !important;
  color: #000; /* you can change to white if needed */
}


.send-moon-btn{
  width: 100%;
  background-color: transparent !important;
  border: 2px solid white !important;
  font-size: 20px !important;
}
.form-para{
  font-size: 16px;
  color: #FFFFFF;
  font-weight: 400;
}
.contact-sub-h{
  color: white;
  font-size: 30px;
  font-weight: 600;
  color: white;
}

.contact-sub-p{
    font-size: 16px !important;
    margin-bottom: 15px !important;
    color: white;
  }



@media (min-width:845px)and (max-width:890px){
  .ai-tab-img{
    width: 600px;
  }
}
@media (min-width:891px)and (max-width:975px){
  .ai-tab-img{
    width: 650px;
  }
}
@media (min-width:976px)and (max-width:1200px){
  .ai-tab-img{
    width: 750px;
  }
}

@media (max-width:700px) {
  .support-container{
    display: flex;
    flex-direction: column;
  }
  .support-container div{
    padding: 10px 10px !important;
  }
  .sales p{
    font-size: 16px;
  }
  .contact-sub-h{
    font-size: 20px;
    margin-top: 20px;
  }
  .contact-sub-p{
    font-size: 14px !important;
    margin-bottom: 15px !important;
    color: white;
  }
  .form-para{
    font-size: 14px !important;
    margin: 20px 0px !important;
  }
  .review-p{
    font-size: 10px !important;
    color: #FFFFFF !important;
  }
  .review-name{
    font-size: 10px !important;
    color: #FFFFFF !important;
  }
  .contact-form-container {
    background-image: url(../../assets/images/Contact-us/form-bg-mobile.png);
  }

}
@media (min-width: 700px) and (max-width: 1035px) {
  .contact-form-container h1 {
    font-size: 32px;
  }
  .form-section{
    margin-top: 30px;
    margin-left: 5px;
  }

  .support-container div {
    padding: 10px;
  }

  .touch p,
  .support p,
  .sales p {
    font-size: 12px;
    line-height: 20px;
    margin-left: 5px;
    margin-bottom: 0px;
  }

  .touch a,
  .support a,
  .sales a {
    font-size: 12px;
    margin-top: 0px;
    margin-left: 5px;
  }

    .contact-sub-h{
    font-size: 15px;
    margin-top: 0px;
    margin-bottom: -7px;
  }
  .contact-sub-p{
    font-size: 9px !important;
    margin-bottom: 10px !important;

  }
  .captcha-section{
    margin-bottom: -35px;
  }
  .invalid-feedback{
    font-size: 10px !important;
    margin-left: 10px;
    margin-bottom: -12px;
    margin-top: -5px !important;
  }


  .image-container {
        background-image: url(../../assets/images/Contact-us/astronaut.png) !important;
        background-position: center;
        border-radius: 15px;
        height: auto; 
      }
      .form-para{
        font-size: 9px !important;
        margin-bottom: 0px;
      }

      .review-p{
    font-size: 9px !important;
    line-height: 15px;
    color: #FFFFFF !important;
  }
  .review-name{
    font-size: 9px !important;
    color: #FFFFFF !important;
  }
}

@media (min-width: 768px) {

  .steps-scroll-section {
    position: relative;
    padding: 100px 0 50px 0;
  }

  .steps-scroll-section h2 {
    position: sticky;
    top: 120px; 
    align-self: flex-start;
  }

}

@media (max-width: 1199.98px) {
  .custom-navbar .navbar-collapse.show,
  .custom-navbar .navbar-collapse.collapsing {
    max-height: calc(100vh - 90px);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .custom-navbar .dropdown-menu {
    max-width: 100%;
    overflow-x: hidden;
  }

  .custom-navbar .dropdown-item,
  .custom-navbar .dropdown-menu .dropdown-toggle {
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .custom-navbar .dropdown-submenu > .dropdown-menu {
    position: static;
    left: 0;
    margin-top: 0.25rem;
    margin-left: 0.75rem;
    width: calc(100% - 0.75rem);
    max-width: calc(100vw - 3rem);
    max-height: none;
    overflow-y: visible;
  }
}

/* Healthcare page: "Applications Built for Different Users" section */
.healthcare-users-section {
  position: relative;
  overflow: hidden;
  padding: 34px 0 40px;
  background:
    radial-gradient(circle at 8% 80%, rgba(72, 0, 168, 0.45), transparent 42%),
    radial-gradient(circle at 88% 18%, rgba(0, 77, 255, 0.26), transparent 36%),
    radial-gradient(circle at 50% 100%, rgba(115, 0, 230, 0.42), transparent 36%),
    #040724;
}

.healthcare-users-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.16) 0.7px, transparent 1px) 0 0 / 26px 26px;
  opacity: 0.2;
}

.healthcare-users-inner {
  position: relative;
  z-index: 1;
}

.healthcare-users-header {
  padding-bottom: 8px;
}

.healthcare-users-section .service-sec-subtitle {
  font-size: 46px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.healthcare-users-section .service-sec-paragraph {
  margin-top: 0 !important;
  color: rgba(234, 239, 255, 0.85);
  font-size: 19px;
}

.healthcare-users-section .android-app-works-boxes {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.healthcare-user-card {
  position: relative;
  min-height: 320px;
  padding: 26px 20px 24px;
  border-radius: 14px;
  border: 1px solid rgba(130, 163, 255, 0.55);
  background: linear-gradient(180deg, rgba(13, 18, 55, 0.9), rgba(5, 8, 32, 0.94));
  box-shadow:
    0 0 0 1px rgba(164, 188, 255, 0.12) inset,
    0 0 24px rgba(74, 105, 255, 0.34);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.healthcare-user-card:hover {
  transform: translateY(-4px);
  border-color: rgba(156, 188, 255, 0.85);
  box-shadow:
    0 0 0 1px rgba(164, 188, 255, 0.2) inset,
    0 0 30px rgba(106, 140, 255, 0.45);
}

.healthcare-user-card h5 {
  color: #f4f6ff;
  font-size: 24px;
  line-height: 1.2;
  margin: 0 0 12px;
}

.healthcare-user-card p {
  color: rgba(211, 220, 255, 0.86);
  font-size: 17px;
  line-height: 1.55;
  margin-top: 0;
}

.healthcare-user-icon {
  width: 66px;
  height: 66px;
  margin-bottom: 18px;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-patient {
  stroke: #8cf7da;
  filter: drop-shadow(0 0 8px rgba(116, 247, 217, 0.9));
}

.icon-professional {
  stroke: #4eb2ff;
  filter: drop-shadow(0 0 8px rgba(78, 178, 255, 0.9));
}

.icon-provider {
  stroke: #c58aff;
  filter: drop-shadow(0 0 8px rgba(197, 138, 255, 0.9));
}

.icon-enterprise {
  stroke: #60b4ff;
  filter: drop-shadow(0 0 8px rgba(96, 180, 255, 0.9));
}

@media (min-width: 700px) and (max-width: 1199px) {
  .healthcare-users-section .service-sec-subtitle {
    font-size: 32px;
  }

  .healthcare-users-section .service-sec-paragraph {
    font-size: 16px;
  }

  .healthcare-users-section .android-app-works-boxes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .healthcare-user-card {
    min-height: 250px;
    padding: 22px 18px;
  }

  .healthcare-user-card h5 {
    font-size: 20px;
  }

  .healthcare-user-card p {
    font-size: 15px;
  }
}

@media (max-width: 699px) {
  .healthcare-users-section {
    padding: 24px 0 30px;
    border-radius: 14px;
  }

  .healthcare-users-section .android-app-works-boxes {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .healthcare-users-header {
    padding: 6px 10px 12px;
  }

  .healthcare-users-section .service-sec-subtitle {
    font-size: 24px;
    line-height: 1.25;
  }

  .healthcare-users-section .service-sec-paragraph {
    font-size: 14px;
    line-height: 1.45;
  }

  .healthcare-user-card {
    min-height: 0;
    padding: 20px 16px;
  }

  .healthcare-user-card h5 {
    font-size: 18px;
  }

  .healthcare-user-card p {
    font-size: 13px;
  }

  .healthcare-user-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 14px;
  }
}

/* Healthcare page: upcoming gains section */
.healthcare-upcoming-section {
  padding: 28px 24px 30px;
  background: transparent;
}

.upcoming-header {
  text-align: center;
  margin-bottom: 22px;
}

.upcoming-tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: #eef1ff;
  border: 1px solid rgba(122, 149, 255, 0.65);
  background: linear-gradient(90deg, rgba(72, 102, 255, 0.45), rgba(83, 35, 196, 0.45));
}

.healthcare-upcoming-section .service-sec-subtitle {
  font-size: 36px;
  line-height: 1.25;
  margin-bottom: 10px;
}

.healthcare-upcoming-section .service-sec-paragraph {
  color: rgba(224, 233, 255, 0.85);
  font-size: 18px;
  line-height: 1.5;
}

.upcoming-benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.upcoming-benefit-card {
  position: relative;
  border: 1px solid rgba(125, 147, 246, 0.45);
  border-radius: 5px;
  padding: 18px 16px 18px 22px;
  background: transparent;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.upcoming-benefit-card::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 12px;
  bottom: 12px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, #65b4ff, #9b7dff);
}

.upcoming-benefit-card:hover {
  transform: translateY(-2px);
  border-color: rgba(162, 183, 255, 0.85);
}

.upcoming-benefit-card h5 {
  margin: 0;
  color: #f3f6ff;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
}

.upcoming-benefit-card:last-child {
  grid-column: 1 / -1;
}

@media (min-width: 700px) and (max-width: 1199px) {
  .healthcare-upcoming-section .service-sec-subtitle {
    font-size: 28px;
  }

  .healthcare-upcoming-section .service-sec-paragraph {
    font-size: 15px;
  }

  .upcoming-benefit-card h5 {
    font-size: 17px;
  }
  .generative-ai-group-img{
  width: 400px;
}
.ai-para{
  font-size: 14px !important;
  margin-top: 15px;
}
}

@media (max-width: 699px) {
  .healthcare-upcoming-section {
    padding: 20px 14px 22px;
  }

  .upcoming-tag {
    font-size: 11px;
    padding: 6px 10px;
  }

  .healthcare-upcoming-section .service-sec-subtitle {
    font-size: 22px;
    line-height: 1.3;
  }

  .healthcare-upcoming-section .service-sec-paragraph {
    font-size: 13px;
  }

  .upcoming-benefit-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .upcoming-benefit-card:last-child {
    grid-column: auto;
  }

  .upcoming-benefit-card {
    padding: 14px 12px 14px 18px;
  }

  .upcoming-benefit-card::before {
    left: 8px;
    top: 10px;
    bottom: 10px;
  }

  .upcoming-benefit-card h5 {
    font-size: 15px;
  }
  .ai-para{
  font-size: 12px !important;
  margin-bottom: 0px;
}
}

.generative-ai-group-img{
  width: 600px;
}
