/*  Header Styling Start ****************************************
********************************************/
/* Header Top Style */
.header__top {
  background-color: var(--color-secondary);
  padding: .3125rem 0;
}

.header__top-inner {
  justify-content: flex-end;
  gap: 1.25rem;
}

.header__search {
  position: relative;
  gap: 1.25rem;
  justify-content: flex-end;
}

.header__search-icon {
  gap: .625rem;
  cursor: pointer;
  color: var(--color-white);
  font-weight: 600;
}

.header__search-box {
  opacity: 0;
  width: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  visibility: hidden;
}

.header__search-box.search-box--active {
  opacity: 1;
  width: 100%;
  visibility: visible;
}

.header__search-box input {
  margin: 0;
  padding: .3125rem var(--spacing-10);
}

.header__socials {
  gap: .9375rem;
}

.header__socials a {
  color: var(--color-white);
}

.header__socials a:hover {
  color: var(--color-orange);
}

/* Header Top Style End********/

/* Header Main Style */
.header__main {
  padding: .625rem 0;
}

.header__main-inner {
  justify-content: space-between;
}

.header__logo a img {
  max-width: 9.375rem;
}

.header__nav-wrapper {
  gap: 1.25rem;
}

/* Minimal mobile helpers — adapt in your main.css */
.header__hamburger {
  display: none;
  background: none;
  border: 0;
  padding: .5rem;
}

.header__hamburger .hamburger-line {
  display: block;
  height: .125rem;
  width: 1.25rem;
  background: #111;
  margin: .25rem 0;
}

@media only screen and (min-width:1199.99px) {
  .header__nav {
    justify-content: flex-end;
    gap: 1.25rem;
    flex-direction: row;
  }

  .header__nav>ul {
    padding: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .header__nav>ul>li {
    position: relative;
    z-index: 10;
    padding: var(--spacing-5) var(--spacing-20);
    border-radius: 3px;
  }

  .header__nav>ul>li.menu-item-has-children {
    padding: .3125rem 1.5625rem .3125rem .625rem;
  }

  .header__nav>ul>li>a {
    position: relative;
    font-size: 1.125rem;
    color: var(--color-secondary);
    display: block;
    font-weight: 600;
    padding: 0;
  }

  .header__nav>ul>li:hover,
  .header__nav>ul>li.current_page_item {
    box-shadow: rgb(83 0 118 / 25%) 0px 30px 60px -12px inset, rgb(43 0 78 / 30%) 0px 18px 36px -18px inset;
    background-color: var(--color-orange);
    color: var(--color-white);
  }

  .header__nav>ul>li.menu-item-has-children:hover,
  .header__nav>ul>li.current_page_item.menu-item-has-children:hover {
    border-radius: 3px 3px 0 0;
  }

  .header__nav>ul>li:hover a,
  .header__nav>ul>li.current_page_item a {
    color: var(--color-white);
  }

  .header__nav>ul>li>.header__menu-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 6px;
  }

  .header__nav>ul>li>.header__menu-arrow i {
    font-size: .875rem;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all ease .3s;
    -o-transition: all ease .3s;
    transition: all ease .3s;
    display: inline-block;
  }

  .header__nav>ul>li.menu-item-has-children:hover>.header__menu-arrow i {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }

  .header__nav>ul>li>.header__menu-arrow i:before {
    font-weight: 600 !important;
  }

  .header__nav ul>li>.sub-menu {
    display: block;
    position: absolute;
    top: 100%;
    width: 346px;
    text-align: start;
    background-color: #fff;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
    border-radius: 0px 0px 10px 10px;
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
    visibility: hidden;
    gap: 0;
    padding: 10px 0;
    pointer-events: none;
    transition: 0.4s;
    left: 0;
  }

  .header__nav ul>li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
    transition: all 0.5s ease;
    pointer-events: inherit;
  }

  .header__nav ul>li>.sub-menu>li {
    display: block;
    width: 100%;
  }

  .header__nav ul>li>.sub-menu>li>a {
    position: relative;
    padding: 12px 20px;
    display: block;
    line-height: 1.5;
    color: #31245b;
    font-weight: 600;
    border-bottom: 1px solid #d7d8db;
    font-size: 16px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
  }

  .header__nav ul>li>.sub-menu>li>a:before {
    content: "\F135";
    position: absolute;
    font-weight: bold;
    top: 14px;
    left: 0;
    visibility: hidden;
    opacity: 0;
    font-family: bootstrap-icons !important;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
  }

  .header__nav ul>li>.sub-menu>li>a:hover {
    color: #fd6649;
    padding-left: 25px;
  }

  .header__nav ul>li>.sub-menu>li>a:hover:before {
    visibility: visible;
    opacity: 1;
    left: 7px;
  }

  .header__nav>ul>li>.sub-menu>li.current-menu-item>a {
    color: #fd6649;
    padding-left: 25px;
  }

  .header__nav>ul>li>.sub-menu>li.current-menu-item>a:before {
    visibility: visible;
    opacity: 1;
    left: 7px;
  }

  .header__nav ul>li>.sub-menu>li:last-child {
    padding-bottom: 0;
  }

  .header__nav ul>li>.sub-menu>li:last-child a {
    border-bottom: none;
    padding-bottom: 0;
  }
}

@media only screen and (max-width:1199.99px) {
  .header__nav {
    position: fixed;
    top: 0;
    right: -450px;
    background: var(--color-secondary);
    z-index: 9999;
    width: 450px;
    -webkit-box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
    box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
    transition: all ease-in-out 0.3s;
    height: 100vh;
    overflow: scroll;
  }

  .show__menu {
    right: 0;
  }

  .header__nav>ul {
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
    align-items: flex-start;
    width: 100%;
    padding: 0px 30px 30px 30px;
  }

  .header__nav>ul>li {
    width: 100%;
    display: block;
    margin-bottom: 1rem;
    position: relative;
  }

  .header__nav>ul>li>a {
    position: relative;
    display: block;
    padding: 15px;
    font-weight: 600;
    line-height: 1;
    box-shadow: rgb(83 0 118 / 25%) 0px 30px 60px -12px inset, rgb(43 0 78 / 30%) 0px 18px 36px -18px inset;
    background-color: var(--color-orange);
    color: var(--color-white);
    font-size: 20px;
  }

  .header__nav>ul>li.current_page_item>a,
  .header__nav>ul>li.menu-item-has-children.open>a {
    color: var(--color-white);
    background-color: var(--color-for-theme);
  }

  .header__nav ul>li>.sub-menu {
    display: none;
  }

  .header__nav ul>li>.sub-menu--open {
    display: block;
  }

  .header__nav ul>li>.sub-menu>li {
    display: block;
    width: 100%;
  }

  .header__nav ul>li>.sub-menu>li>a {
    position: relative;
    padding: 12px 20px;
    display: block;
    line-height: 1.5;
    color: var(--color-white);
    font-weight: 600;
    border-bottom: 1px solid var(--color-white);
  }

  .header__nav ul>li>.sub-menu>li>a:before {
    content: "\F135";
    position: absolute;
    font-weight: bold;
    top: 14px;
    left: 0;
    font-family: bootstrap-icons !important;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
  }

  .header__nav ul>li>.sub-menu>li:last-child {
    padding-bottom: 0;
  }

  .header__nav ul>li>.sub-menu>li:last-child a {
    border-bottom: none;
    padding-bottom: 0;
  }

  .header__nav .open>a {
    font-weight: bold;
  }

  .nav__hamburger {
    display: flex;
  }

  span.close__menu i {
    font-size: 30px;
    color: #fff;
  }

  span.close__menu {
    padding: 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .mobile__container span {
    font-size: 1.25rem;
    box-shadow: rgb(83 0 118 / 25%) 0px 30px 60px -12px inset, rgb(43 0 78 / 30%) 0px 18px 36px -18px inset;
  }

  .header__nav-close {
    font-size: 30px;
    color: #fff;
    display: flex;
    justify-content: end;
    padding: 1rem;
  }

  .header__hamburger {
    display: inline-block;
  }

  .header__nav>ul>li>.header__menu-arrow {
    cursor: pointer;
    position: absolute;
    top: 7px;
    right: .4375rem;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon fill='%2347005f' points='6 7 12 13 18 7 20 9 12 17 4 9'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 16px;
    background-color: var(--color-white);
    width: 2.1875rem;
    height: 2.1875rem;
    border: 1px solid var(--color-white);
  }

  .header__nav>ul>li.menu-item-has-children.open>.header__menu-arrow {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon fill='%2347005f' points='4 15 12 7 20 15 18 17 12 11 6 17'/%3E%3C/svg%3E");
    background-color: var(--color-white);
  }

  .header__nav>ul>li>.header__menu-arrow i {
    display: none;
  }
}

/* Header Main Style End********/
/*  Header Styling Ends ****************************************
********************************************/
.wp-block-button.hero__btn {
  margin-top: 1rem;
}

.wp-block-button.hero__btn a,
.brand__button .wp-block-button__link,
.cta__wrap a.wp-block-button__link {
  background-color: var(--color-theme);
  background-image: none;
}

.wp-block-button.hero__btn a:hover,
.brand__button .wp-block-button__link:hover,
.cta__wrap a.wp-block-button__link:hover {
  background-color: var(--color-primary);
  background-image: none;
}

@media only screen and (min-width: 991px) {
  h2.section__title {
    font-size: 45px;
  }
}

@media only screen and (max-width:991px) {
  h2.section__title {
    font-size: 35px;
  }
}

.about__img img {
  clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 90%);
}

ul.feature__list {
  margin: 0;
  padding: 0;
}

.feature__list li {
  display: flex;
  gap: 10px;
  font-weight: 600;
  flex-direction: column;
  color: var(--color-secondary);
  flex-wrap: wrap;
  position: relative;
  padding-left: 1.5rem;
}

.feature__list li:before {
  content: "\f269";
  font-family: bootstrap-icons;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-orange);
}

ul.wp-block-list.images__thumb {
  margin: 0;
  padding:10px 0 0 0;
  list-style: none;
}

.images__thumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 20px;
}

.images__thumb li {
  position: relative;
  max-width: 50px;
  width: 100%;
  background-color: #fff;
  border-radius: 50%;
  -webkit-margin-start: -1rem;
  margin-inline-start: -1rem;
  z-index: 2;
}

.images__thumb li:first-child {
  -webkit-margin-start: 0;
  margin-inline-start: 0;
}

.images__thumb li img {
  height: 50px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
  padding: 3px;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}

.images__thumb li:last-child {
  background-color: #fff;
  padding: 3px;
  max-width: 50px;
  width: 100%;
}

.images__thumb li:last-child i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-size: 25px;
  line-height: 1;
  color: #fff;
  background: var(--color-secondary);
  border-radius: 50%;
}

h4.client__number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 4px;
  line-height: 1;
  color: var(--color-secondary);
}

.service-card p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

@media only screen and (max-width:991px) {
  body .service__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width:576px) {
  body .service__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

ul.why__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

figure.image-anime {
  height: 490px;
  /* border-radius: 1rem; */
}

.image-text-container p strong {
  background-color: #fd6649;
  border-radius: 0.5rem;
  padding: 0.1rem 0.5rem;
  font-weight: 700;
  color: #fff;
}

.chip {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

figure.wp-block-image.brand__logo {
  margin: 0;
}

.faq__sec h2.section__title {
  max-width: 100%;
  padding-top: 3rem;
}

.faq__sec .wp-block-columns.is-layout-flex {
  max-width: 100%;
  padding-bottom: 3rem;
}

.tab__sec {
  padding-bottom: 3rem;
}

.entry-title {
  display: none !important;
}

.single-post ul.wp-block-list.breadcrumb {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 10px;
}

.single-post ul.wp-block-list.breadcrumb li {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}

.single-post ul.wp-block-list.breadcrumb li:last-child {
  color: var(--color-orange-light);
}

.single-post ul.wp-block-list.breadcrumb li:last-child:before {
  content: "/";
  padding-right: 7px;
}

.single-post ul.wp-block-list.about-us-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: block;
}

.single-post ul.wp-block-list.about-us-list li {
  position: relative;
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--color-secondary);
  padding-left: 30px;
  margin-bottom: 20px;
}

.single-post ul.wp-block-list.about-us-list li:before {
  content: "\f269";
  font-family: bootstrap-icons;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-orange);
}

.intro__sec--first .wp-block-columns-is-layout-flex {
  gap: 50px;
  padding: 3rem 0;
}

.wp-block-stackable-columns.stk-block-columns.stk-block.stk-77656df {
  max-width: 100%;
}

.wp-container-core-columns-is-layout-9d6595d7 .wp-block-column-is-layout-flow {
  position: relative;
}

figure.wp-block-image.size-full.abt-img--2 {
  max-width: 250px;
  position: absolute;
  right: 0;
  bottom: -50px;
}

figure.image-anime.abt-img-1 {
  height: auto;
}

.iconwrp {
  display: flex;
  gap: 50%;
}

.icon-box {
  background-image: linear-gradient(267.43deg, #8b2dab 4.95%, #fd6649 97.92%);
  background-size: 200% auto;
  border-radius: 999px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
  color: #fff;
}

.icon-box:hover {
  background-position: right center;
}

.apprch--sec.is-layout-constrained .wp-container-core-columns-is-layout-9d6595d7 {
  max-width: 100%;
}

.apprch--sec figure.image-anime {
  border-radius: 1rem;
}

.casestdy .stk-block.stk-block-column .stk-column-wrapper {
  margin: 0;
}

.faq--sec {
  padding: 3rem 0;
}

.component-slider .swiper-slide .grid-row {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  justify-content: flex-start;
}

/* .img__wrap img{
  height:90vh;
}
.component__sec .content__wrap {
  height:90vh;
} */
@media only screen and (max-width:768px) {
  .component-slider .swiper-slide .grid-row {
    grid-template-columns: repeat(1, 1fr);
  }
}

h2.wp-block-heading.section__title.title--sec {
  max-width: 100%;
}

.wp-block-group.section__wrapper.process--sec figure.wp-block-image.size-large {
  max-width: 100%;
}

.grid-row {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}

@media only screen and (max-width:768px) {
  .grid-row {
    grid-template-columns: repeat(1, 1fr);
  }
}

.footer__form {
  padding: 5rem 1rem 1rem 1rem;
  color: #fff;
}

.footer__form h3 {
  color: #fff;
}

.footer__social__icons a {
  color: #fff;
}

.footer__bottom p {
  margin: 0;
}

.footer__info--wrap span,
.address__bar span,
.footer__bottom p {
  color: #fff;
}

.col--group .section-box {
  background-color: #f0ebff;
  transition: all ease .3s;
  transform: translateY(0);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.section-box svg {
  max-width: 4rem;
  margin: 0 auto;
}

.section-box h3 {
  margin: 0;
  padding: 14px 0;
  font-size: 25px;
}

.lght--intro .wp-block-columns.is-layout-flex,
.lght--title,
p.lght--para {
  max-width: 100%;
}

span.uagb-question strong,
.stk-block-tab-labels__text span strong {
  font-weight: 600;
}

.space-page .header {
  border-bottom: 1px solid #111;
}

.hero__img img {
  border-radius: 20px;
  box-shadow: 0 4px 6px -2px var(--color-for-border-1), 0 4px 6px -2px var(--color-for-border-1), 0 12px 16px -4px var(--color-for-border-1);
  border: 1px solid var(--color-for-border);
}

.huddle--room-hero .hero__content p {
  font-size: 25px;
  line-height: 1.2;
  font-weight: 700;
}

.huddle--room-hero .hero__content a {
  margin-top: 1rem;
}

.hero__overlay {
  position: absolute;
  left: 5px;
  top: 75px;
  width: 100px;
  height: 100px;
  color: #ff8c56;
  z-index: -1;
  transform: rotate(90deg);
}

.image__overlay1 {
  position: absolute;
  top: -12px;
  right: 35%;
  width: 60px;
  height: 60px;
  color: #ff8c56;
  animation: slide 4s ease-in-out infinite;
}

.image__overlay {
  position: absolute;
  left: 45%;
  top: 80%;
  width: 150px;
  height: 150px;
  color: #ff8c56;
  z-index: -1;
}

.grid__commn--style .grid__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

@media only screen and (max-width:1199.99px) {
  .grid__commn--style .grid__row {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

@media only screen and (max-width:991.99px) {
  .grid__commn--style .grid__row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width:767.99px) {
  .grid__commn--style .grid__row {
    grid-template-columns: repeat(1, 1fr);
  }
}

.grid__commn--style .grid__row .grid__col {
  background: #fff;
  transition: all ease 0.5s;
  border-radius: 15px;
  padding: 20px 25px;
  box-shadow: 0 4px 6px -2px #dcdbdb, 0 4px 6px -4px #dcdbdb;
  border: 1px solid #c6c4c4;
}

.grid__commn--style .grid__row .grid__col:hover {
  transform: translateY(-5px);
}

.grid__commn--style .col__icon svg {
  width: 3.75rem;
}

.grid__commn--style .col__title {
  margin: 15px 0 15px;
  color: #2f0658;
  font-size: 20px;
  font-weight: bold;
}

.grid__commn--style .col__description ul li {
  padding: 0 0 10px 0;
}

.grid__commn--style .col__description ul li i {
  font-size: 12px;
  color: #fd6649;
  padding-right: .5rem;
}

@-webkit-keyframes slide {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    /* Start on the left */
  }

  50% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    /* Move to the right */
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    /* Return to the left */
  }
}

@keyframes slide {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    /* Start on the left */
  }

  50% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    /* Move to the right */
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    /* Return to the left */
  }
}

.content-container .image-box img {
  border-radius: 20px;
  /* box-shadow: 0 4px 6px -2px var(--color-for-border-1), 0 4px 6px -2px var(--color-for-border-1), 0 12px 16px -4px var(--color-for-border-1); */
  /* border: 1px solid var(--color-for-border); */
}

.content-container .text-box ul {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  /* align-items: center; */
  justify-content: flex-start;
}

.content-container .text-box ul li h4 {
  font-size: 20px;
  margin: 0 0 15px;
}

.content-container .text-box ul li p {
  margin: 0 0 10px;
}

@media only screen and (max-width:1299.99px) {
  .image__overlay1 {
    top: -10px;
    width: 40px;
    height: 40px;
  }

  .hero__overlay {
    left: 0;
    top: 0;
  }
}

.hero-section .is-layout-flex {
  max-width: 100%;
}

figure.wp-block-image.hero--img img {
  border-radius: 20px;
  box-shadow: 0 4px 6px -2px var(--color-for-border-1), 0 4px 6px -2px var(--color-for-border-1), 0 12px 16px -4px var(--color-for-border-1);
  border: 1px solid var(--color-for-border);
}

.is-layout-constrained> :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
  max-width: 100%;
}

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

.solutions-grid .grid-col {
  background: #fff;
  transition: all ease 0.5s;
  border-radius: 15px;
  padding: 20px 25px;
  box-shadow: 0 4px 6px -2px #dcdbdb, 0 4px 6px -4px #dcdbdb;
  border: 1px solid #c6c4c4;
}

.solutions-grid .grid-col:hover {
  transform: translateY(-5px);
}

.solutions-grid .grid-col svg {
  width: 3.75rem;
}

.solutions-grid .grid-col ul.wp-block-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.solutions-grid .grid-col ul.wp-block-list li:before {
  font-family: bootstrap-icons !important;
  content: "\f26a";
  font-size: 12px;
  color: #fd6649;
  padding-right: .5rem;
}

.ballroom--grid .solutions-section .solutions-grid {
  grid-template-columns: repeat(3, 1fr);
}

@media only screen and (max-width: 768px) {
  .ballroom--grid .solutions-section .solutions-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  body .solutions-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.solution__item .item__thumb a {
  position: relative;
  display: block;
  overflow: hidden;
}

.solution__item .item__thumb a:before {
  content: "";
  background: linear-gradient(180deg, rgba(5, 18, 41, 0) 0%, #2f06588a 84%);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 3;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.wp-container-core-columns-is-layout-9d6595d7 .image-text-container {
  position: absolute;
}

.hero__content .hero__heading {
  max-width: 850px;
}

.our-approach-content-btn a.wp-block-button__link {
  background-image: linear-gradient(to right, var(--color-secondary) 0%, #fd6649 50%, var(--color-secondary) 100%);
  background-size: 200% auto;
  padding: 16px 20px;
  font-weight: 600;
}

.our-approach-content-btn a.wp-block-button__link:hover {
  background-position: right center;
}

.wp-block-column.process__step-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
}

.process__svg img {
  max-width: 5rem;
  margin: 0 auto;
}

.process__step-wrap .process__svg {
  border: 20px solid #111;
  border-radius: 100%;
  width: 170px;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 2rem;
}

.process__step-wrap .process__svg:after {
  content: " \F5D4";
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: 700 !important;
  font-size: 3rem;
  position: absolute;
  bottom: -80px;
  color: #8b2dab;
}

.process__step-wrap .step--shape {
  position: absolute;
  top: 50px;
  right: -50px;
  width: 4rem;
}

.process__svg.svg--1 {
  border-color: #8832bd;
}

.shape--1 {
  color: #8832bd;
}

.process__svg.svg--2 {
  border-color: #fd6649;
}

.shape--2 {
  color: #fd6649;
}

.process__svg.svg--3 {
  border-color: #d3229b;
}

.shape--3 {
  color: #d3229b;
}

.process__svg.svg--4 {
  border-color: #ff8c56;
}

.shape--4 {
  color: #ff8c56;
}

.process__svg.svg--5 {
  border-color: #2f0658;
}

.shape--5 {
  color: #2f0658;
}

.process__svg.svg--6 {
  border-color: #880088;
}

.shape--6 {
  color: #880088;
}

.process__svg.svg--7 {
  border-color: #520357;
}

.shape--7 {
  color: #520357;
}

@media only screen and (max-width:1300px) {
  .process__step-wrap .step--shape {
    top: 80px;
    right: -30px;
    width: 2rem;
  }
}

@media only screen and (max-width:1200px) {
  .process__step-wrap .step--shape {
    display: none;
  }
}

.video--wrapper {
  position: relative;
  width: 100%;
  height: 550px;
  margin: 0 auto;
  cursor: pointer;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.2);
  background-color: #000;
}

.video-thumbnail {
  position: relative;
  display: block;
}

.video-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.video--wrapper:hover img {
  transform: scale(1.05);
}

.play-button {
  position: absolute;
  top: 43%;
  left: 50%;
  transform: translate(-43%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
}

.play-button i {
  font-size: 40px;
  color: #fd6649;
  /* YouTube red */
}

.video--wrapper:hover .play-button {
  background: rgba(255, 255, 255, 1);
  transform: translate(-43%, -50%) scale(1.1);
}

.video--wrapper iframe {
  width: 100%;
  height: 550px;
  border: none;
  display: block;
}

@media only screen and (max-width:1300px) {
  .video--wrapper {
    height: auto;
  }

  .video--wrapper iframe {
    height: 450px;
  }
}

@media only screen and (max-width:768px) {
  .video--wrapper {
    height: 450px;
  }

  .play-button {
    top: 33%;
    transform: translate(-33%, -50%);
  }

  .video--wrapper:hover .play-button {
    transform: translate(-33%, -50%) scale(1.1);
  }
}

@media only screen and (max-width:575px) {
  .video--wrapper {
    height: auto;
  }

  .play-button {
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .video--wrapper:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.hero--section h1 {
  font-size: 70px;
}

@media only screen and (max-width:991px) {
  .hero--section h1 {
    font-size: 50px;
  }
}

@media only screen and (max-width:480px) {
  .hero--section h1 {
    font-size: 45px;
  }
}

.contact__details .card-container {
  grid-template-columns: repeat(3, 1fr);
}

@media only screen and (max-width:1199px) {
  .contact__details .card-container .info-card {
    flex-direction: column;
  }

  .contact__details .card-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width:576px) {
  .contact__details .card-container .info-card {
    flex-direction: row;
  }

  .contact__details .card-container {
    grid-template-columns: repeat(1, 1fr);
  }
}

.contact-banner {
  background: url(https://staging.vallect.com/wp-content/themes/valley/assets/img/contact/contact.webp) no-repeat center center / cover;
}

.office__location .grid-row {
  grid-template-columns: repeat(3, 1fr);
}

@media only screen and (max-width:991px) {
  .contac__form .grid-row {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media only screen and (max-width:768px) {
  .office__location .grid-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width:480px) {
  .office__location .grid-row {
    grid-template-columns: repeat(1, 1fr);
  }
}

.breadcrumb {
  display: flex;
}

.breadcrumb li:first-child:after {
  content: "/";
  padding-left: .5rem;
}

.breadcrumb li {
  padding-right: .5rem;
  color: #fff;
  text-transform: capitalize;
}

@media only screen and (max-width: 576px) {
  .header__nav {
    width: 350px;
    right: -350px;
  }

  .show__menu {
    right: 0;
  }
}

/* ---------------- Animations ---------------- */

/* Fade In */
.fade-in {
  -webkit-animation: fadeIn 1s ease forwards;
  animation: fadeIn 1s ease forwards;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

/* Slide In from Left */
.slide-left {
  -webkit-animation: slideLeft 1s ease forwards;
  animation: slideLeft 1s ease forwards;
}

@-webkit-keyframes slideLeft {
  from {
    opacity: 0;
    -webkit-transform: translateX(-80px);
    transform: translateX(-80px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideLeft {
  from {
    opacity: 0;
    -webkit-transform: translateX(-80px);
    transform: translateX(-80px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

/* Flip Animation */
.flip {
  -webkit-animation: flipIn 0.8s ease forwards;
  animation: flipIn 0.8s ease forwards;
}

@-webkit-keyframes flipIn {
  from {
    -webkit-transform: rotateX(90deg);
    transform: rotateX(90deg);
    opacity: 0;
  }

  to {
    -webkit-transform: rotateX(0);
    transform: rotateX(0);
    opacity: 1;
  }
}

@keyframes flipIn {
  from {
    -webkit-transform: rotateX(90deg);
    transform: rotateX(90deg);
    opacity: 0;
  }

  to {
    -webkit-transform: rotateX(0);
    transform: rotateX(0);
    opacity: 1;
  }
}

.whatsapp-widget {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  font-family: "Poppins", sans-serif;
}

/* Floating Button */
.whatsapp-float {
  background: #25d366;
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  color: #fff;
  font-size: 35px;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ✅ Fix: Ensure icon doesn’t block clicks */
.whatsapp-float i {
  pointer-events: none;
}

.whatsapp-float:hover {
  transform: scale(1.05);
  background: #1ebd5a;
}

/* Popup Box */
.whatsapp-popup {
  width: 320px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  position: absolute;
  bottom: 80px;
  right: 0;
  display: none;
  flex-direction: column;
  animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Header */
.whatsapp-header {
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
}

.whatsapp-icon i {
  font-size: 30px;
}

.whatsapp-title h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.whatsapp-title p {
  font-size: 13px;
  margin: 3px 0 0;
}

/* Body */
.whatsapp-body {
  padding: 15px;
  background: #fff;
}

.whatsapp-note {
  font-size: 13px;
  color: #777;
  margin-bottom: 10px;
}

/* Contact Card */
.whatsapp-contact {
  display: flex;
  align-items: center;
  background: #f9f9f9;
  border-radius: 10px;
  padding: 10px 12px;
  color: inherit;
  text-decoration: none;
  transition: background 0.3s;
}

.whatsapp-contact:hover {
  background: #f1f1f1;
}

.whatsapp-contact-icon i {
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  padding: 8px;
  font-size: 22px;
}

.whatsapp-contact-info {
  flex: 1;
  margin-left: 10px;
}

.whatsapp-contact-info h5 {
  font-size: 15px;
  margin: 0;
  font-weight: 600;
}

.whatsapp-contact-info p {
  font-size: 12px;
  color: #777;
  margin: 3px 0 0;
}

.whatsapp-contact i.bi-chevron-right {
  color: #25d366;
  font-size: 16px;
}
.search-no-results .blog__list {
    display: block;
}
.latest-posts {
  padding: 3.75rem 0;
}

.latest-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

.latest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.recent-blog-item {
  text-align: center;
}

.recent-blog-item img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
}

.recent-blog-item .entry-title {
  font-size: 18px;
  margin-bottom: 8px;
}

.wp-block-group.img-grid--row {
  justify-content: flex-end;
  align-items: center;
}
.elementor-kit-8 button, .elementor-kit-8 input[type="button"], .elementor-kit-8 input[type="submit"], .elementor-kit-8 .elementor-button {
  font-size:inherit !important;
}
.elementor-location-footer {
  display: none !important;
}
.title--shape {
  position: relative;
  color: #fd6649;
}
.title--shape:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 140px;
  height: 170px;
  background-color: currentColor; /* color control */
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 480 480'%3E%3Cpath d='M120 120h120v120H120zM0 240h120v120H0zM120 360h120v120H120zM0 0h120v120H0zM360 120h120v120H360zM240 240h120v120H240zM360 360h120v120H360zM240 0h120v120H240z'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 480 480'%3E%3Cpath d='M120 120h120v120H120zM0 240h120v120H0zM120 360h120v120H120zM0 0h120v120H0zM360 120h120v120H360zM240 240h120v120H240zM360 360h120v120H360zM240 0h120v120H240z'/%3E%3C/svg%3E") no-repeat center / contain;
}
.wp-block-group.alignwide.section__wrapper {
    max-width: 100%;
}
.meeting__software-list{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap:4rem;
}
.meeting__software-list li {
  width: 4.375rem;
}