@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --primary-color: #2a66ae;
  --secondary-color: #00adef;
  --white-color: #ffffff;
  --black-color: #1a1818;
  --light-bg: #def6ff;
  --primary-font: "Poppins", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--primary-font);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1440px;
  padding-inline: 20px;
  margin: 0 auto;
}

.container.lg {
  max-width: 1840px;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.align-items-center {
  align-items: center;
}

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

.h-100 {
  height: 100%;
}

.w-100 {
  width: 100%;
}

.pt-0 {
  padding-top: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.pe-80 {
  padding-right: 80px;
}

.ps-0 {
  padding-left: 0;
}

.pe-0 {
  padding-right: 0;
}

.pr-30 {
  padding-right: 30px;
}

.pl-30 {
  padding-left: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.ml-auto {
  margin-left: auto;
}

.mr-auto {
  margin-right: auto;
}

.ml-md-auto {
  margin-left: auto;
}

.mr-md-auto {
  margin-right: auto;
}

.light-bg {
  background-color: var(--light-bg);
}

.text-center {
  text-align: center;
}

.text-uppercase {
  text-transform: uppercase;
}

section {
  padding: 100px 0;
}

.site-footer {
  background: var(--primary-color);
  color: #fff;
  padding: 70px 0 10px;
  text-align: center;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

header.site-header {
    z-index: 9999;
    position: relative;
}

.top-header {
  padding: 10px 0;
  background-color: var(--primary-color);
}

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

.top-header ul li {
  color: #fff;
  font-size: 16px;
  line-height: 130%;
  font-weight: 500;
  display: inline-block;
}

.top-header ul li + li {
  margin-left: 20px;
}

.top-header ul li a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.top-header ul li a:hover {
  color: var(--secondary-color);
}

.top-header ul li i {
  color: var(--secondary-color);
  margin-right: 6px;
}

.main-header {
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  padding: 10px 0;
}

.site-nav {
  align-self: center;
}

.site-nav .menu-finflow-header-menu-container ul {
  padding: 0;
  margin: 0;
}

.site-nav .menu-finflow-header-menu-container ul li {
  display: inline-block;
}

.site-nav .menu-finflow-header-menu-container ul li a {
  text-decoration: none;
}

.main-header .custom-logo {
  max-width: 180px;
  height: auto;
}

.site-nav .menu-finflow-header-menu-container ul li a {
  color: var(--text-color);
  font-size: 16px;
  line-height: 130%;
  font-weight: 600;
  padding: 0 20px;
  transition: all 0.3s;
}

.site-nav .menu-finflow-header-menu-container ul li a:hover,
.site-nav .menu-finflow-header-menu-container ul li.current_page_item a {
  color: var(--primary-color);
}

.hamburge-menu {
  align-self: center;
  display: none;
}

.hamburge-menu span {
  display: block;
  width: 60%;
  height: 2px;
  background-color: var(--primary-color);
  margin: 0 auto;
}

.hamburge-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  cursor: pointer;
}

.header-btn {
  align-self: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  width: 200px;
  height: 62px;
  padding: 22px 10px 22px 28px;
  border: 2px solid;
  color: #fff;
  text-decoration: none;
  border-radius: 15px;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  transition: all 0.3s;
}

a.btn.primary-btn {
  border-color: var(--secondary-color);
  background-color: var(--primary-color);
}

.btn .btn-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary-color);
  border-radius: 13px;
  margin-left: auto;
}

.btn .btn-icon i {
  transform: rotate(-45deg);
  font-weight: 900;
  font-size: 24px;
}

.menu-close {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--primary-color);
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--primary-color);
  margin-left: auto;
  margin-right: 10px;
}

.overflow-hidden {
  overflow: hidden;
}

.home-page-banner {
  background-image: var(--bg-img);
  background-size: cover;
  background-position: center;
  height: 700px;
  position: relative;
  z-index: 1;
}

.home-banner-content {
  width: 50%;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: flex-end;
}

.home-banner-content h1 {
  font-size: 48px;
  line-height: 1.2;
  color: #fff;
  margin-top: 0;
  margin-bottom: 20px;
}

.home-banner-content p {
  margin: 0 0 20px 0;
  font-size: 18px;
  line-height: 1.2;
  color: #fff;
}

.home-page-banner:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.key-strategies-sec {
  background-color: var(--light-bg);
}

.strategies {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  margin-top: 60px;
}

.single-strategy {
  width: calc(25% - 36px);
}

.section-title {
  font-size: 38px;
  line-height: 120%;
  margin: 0;
}

.single-strategy .strategy-icon-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 0 50px;
  padding: 0 0 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}

.single-strategy .strategy-icon-wrap .strategy-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary-color);
  border-radius: 50%;
  padding: 12px;
}

.single-strategy .strategy-icon-wrap h4 {
  width: calc(100% - 80px);
  margin: 0;
}

img {
  max-width: 100%;
}

.pr-40 {
  padding-right: 40px;
}

.pr-50 {
  padding-right: 50px;
}

.pl-50 {
  padding-left: 50px;
}

.single-strategy .strategy-meta p {
  color: var(--black-color);
}

.single-strategy .strategy-meta h3 {
  margin: 0;
  font-size: 75px;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1;
}

.expert-col {
  width: 50%;
}

.expert-sec {
  background-color: var(--primary-color);
}

.light {
  color: #fff;
}

.expert-col-content p {
  color: #fff;
}

.expert-col-content ul li {
  color: #fff;
  list-style: none;
}

.expert-col-content.dark ul li {
  color: var(--black-color);
}

.expert-col-content ul {
  margin: 30px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 16px;
}

.expert-list-wrap {
  display: flex;
  flex-wrap: wrap;
}

.expert-list-wrap .single-expert-item {
  width: 50%;
}

.expert-list-wrap .single-expert-item .expert-item-content {
  padding: 30px 50px;
}

.expert-list-wrap .single-expert-item .expert-item-content .expert-item-icon {
  width: 60px;
  height: 60px;
}

.expert-list-wrap
  .single-expert-item
  .expert-item-content
  .expert-content-meta
  h5 {
  color: #fff;
  font-size: 28px;
  line-height: 120%;
  margin: 30px 0;
}

.expert-list-wrap
  .single-expert-item
  .expert-item-content
  .expert-content-meta
  p {
  margin: 0;
  color: #fff;
}

.expert-list-wrap .single-expert-item:first-child {
  border-right: 1px solid var(--secondary-color);
  border-bottom: 1px solid var(--secondary-color);
}

.expert-list-wrap .single-expert-item:nth-child(2) {
  border-bottom: 1px solid var(--secondary-color);
}

.expert-list-wrap .single-expert-item:nth-child(3) {
  border-right: 1px solid var(--secondary-color);
}

.expert-col-content ul li .list-icon {
  margin-right: 10px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--secondary-color);
  border-radius: 50%;
  color: var(--secondary-color);
  background-color: rgba(0, 0, 0, 0.1);
}

.expert-col-content ul li .list-icon.light {
  color: #fff;
  border-color: #fff;
}

.engagement-list {
  border-top: 1px solid var(--black-color);
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 20px;
}

.single-engagement .engagement-inner {
  position: relative;
  overflow: hidden;
  height: 195px;
  z-index: 1;
  border-bottom: 1px solid var(--black-color);
  transition: all 0.3s;
}

.single-engagement .engagement-inner .engagement-img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 30px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.single-engagement .engagement-inner .engagement-img:after {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.single-engagement .engagement-inner .engagement-content h3 {
  position: relative;
  text-align: center;
  font-size: 30px;
  color: var(--black-color);
  counter-increment: flex-count-01;
  transition: all 0.3s;
  margin-left: 0;
  margin-top: 0;
}

.single-engagement .engagement-inner .engagement-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  height: 100%;
  padding: 0 20px;
}

.single-engagement .engagement-inner .engagement-content > div {
  width: calc(100% - 170px);
}

.single-engagement .engagement-inner .engagement-content a {
  display: block;
  width: 140px;
  color: var(--black-color);
  font-size: 18px;
  text-decoration: none;
  position: relative;
}

.single-engagement .engagement-inner .engagement-content h3:before {
  content: attr(data-count);
  position: absolute;
  left: 0;
}

.single-engagement:hover .engagement-img {
  opacity: 1;
  visibility: visible;
}

.single-engagement:hover .engagement-inner .engagement-content h3 {
  text-align: left;
  margin-left: 90px;
  color: #fff;
  font-size: 26px;
}

.single-engagement:hover .engagement-inner .engagement-content h3:before {
  left: -50px;
}

.single-engagement:hover .engagement-inner .engagement-content p {
  color: #fff;
  margin: 0 90px;
  text-align: left;
  transition: all 0.3s;
}

.single-engagement:hover .engagement-inner .engagement-content a {
  color: #fff;
}

.single-engagement .engagement-inner .engagement-content a i {
  transform: rotate(-45deg);
}

.single-engagement:hover {
  border-color: transparent;
}

.single-engagement:hover .engagement-inner {
  border-color: transparent;
}

.single-engagement .engagement-inner .engagement-content p {
  text-align: center;
  width: 80%;
  margin-inline: auto;
}

.single-engagement .engagement-inner .engagement-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-engagement .engagement-inner .engagement-content a:after {
  content: "";
  position: absolute;
  bottom: 0;
  background: var(--black-color);
  width: 100%;
  height: 1px;
  left: 0;
  transition: all 0.3s;
}

.single-engagement .engagement-inner .engagement-content a:hover:after {
  width: 20px;
  background: #fff;
}

.single-engagement:hover .engagement-inner .engagement-content a:after {
  background: #fff;
}

.col-40 {
  width: 40%;
}

.col-50 {
  width: 50%;
}

.col-60 {
  width: 60%;
}

.col-30 {
  width: 30%;
}

.col-70 {
  width: 70%;
}

.why-choose {
  background-image: var(--bg-img);
  background-size: cover;
  background-position: center;
  z-index: 1;
  position: relative;
}

.why-choose .bg-overlay {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  pointer-events: none;
  background-color: rgba(1, 14, 55);
  z-index: -1;
  opacity: 0.8;
}

.why-choose-wrap {
  display: flex;
  flex-wrap: wrap;
}

.why-choose-wrap .single-why-choose {
  width: 33.33%;
  padding: 15px;
}

.why-choose-wrap .single-why-choose .why-choose-inner {
  padding: 24px;
  border: 1px solid var(--primary-color);
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  border-radius: 30px;
  height: 100%;
}

.why-choose-icon {
  width: 108px;
  height: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  background-color: rgba(42, 102, 174, 0.1);
}

.why-choose-icon img {
  width: 40px;
  height: 40px;
}

.why-choose-icon:after {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 20px;
  background-color: var(--primary-color);
}

.why-choose-wrap .single-why-choose .why-choose-meta p {
  font-size: 14px;
  line-height: 160%;
}

.process-steps {
  background-color: var(--light-bg);
}

.single-process {
  width: 25%;
}

.process-inner {
  padding: 40px;
}

.pricess-icon {
  width: 110px;
  height: 110px;
  box-shadow: 0 0 24px 0 rgba(26, 47, 106, 0.13);
  padding: 20px;
  border-radius: 6px;
  position: relative;
  margin-bottom: 40px;
  background-color: #fff;
}

.pricess-icon:after {
  content: attr(data-step);
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--primary-color);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.testimonial-inner {
  margin: 0 20px;
  padding: 20px;
  background-color: var(--light-bg);
  border-radius: 20px;
}

.testimonial-list .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  margin-left: 0;
  padding-left: 0;
}

.testimonial-list .slick-dots li {
  list-style: none;
  margin: 0 8px;
  width: 14px;
  height: 14px;
  background: var(--secondary-color);
  border-radius: 50%;
  transition: all 0.3s;
  cursor: pointer;
}

.testimonial-list .slick-dots li button {
  font-size: 0;
  border: none;
  opacity: 0;
}

.testimonial-list .slick-dots li.slick-active {
  width: 20px;
  height: 20px;
  background-color: var(--primary-color);
}

.home_page_faq_wrap {
  padding: 0 60px;
  max-width: 1024px;
  margin: 60px auto 0;
}

.single_faq {
  padding: 28px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq_que {
  position: relative;
  cursor: pointer;
}

.faq_que:after {
  content: "\f078";
  font-family: "FontAwesome";
  position: absolute;
  top: 0;
  right: 0;
  color: var(--black-color);
  transition: transform 0.3s;
}

.faq_que.active:after {
  transform: rotate(180deg);
}

.faq_que h4 {
  margin: 0;
  color: var(--black-color);
}

.faq_content {
  display: none;
}

.faq_content p {
  margin-bottom: 0;
  color: var(--black-color);
}

.single-industry {
  display: inline-block;
  width: 20%;
  background-image: var(--bg-img);
  background-size: cover;
  background-position: center;
  height: 440px;
  transition: all 0.3s;
}

.industry-list {
  /* display: inline-block; */
  display: flex;
  width: 100%;
  height: 100%;
}

.single-industry .industry-inner {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 20px;
  z-index: 1;
  overflow: hidden;
}

.single-industry:hover {
  width: 30%;
}

.single-industry .industry-inner:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  z-index: -1;
}

.single-industry .industry-inner .insutry-meta {
  opacity: 0;
  visibility: hidden;
}

.industry-title.main-heading {
  color: #fff;
  position: absolute;
  bottom: 30px;
  left: 24px;
  text-align: center;
  transform: rotate(-180deg);
  width: 100%;
  writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  margin: 0;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s;
}

.single-industry:hover .insutry-meta {
  opacity: 1;
  visibility: visible;
}

.single-industry:hover .industry-title.main-heading.mt-0.mb-0 {
  opacity: 0;
  visibility: hidden;
}

.single-industry .industry-inner .insutry-meta .industry-title {
  color: #fff;
}

.industry-title a {
  text-decoration: none;
  color: inherit;
}

.single-industry .industry-inner .insutry-meta {
  margin-top: 40px;
}

.single-industry .industry-inner .insutry-meta p {
  color: #fff;
}

.common-banner {
  background-image: var(--bg-img);
  background-size: cover;
  background-position: center;
  padding: 140px 0;
  position: relative;
  z-index: 1;
}

.common-banner:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(42, 102, 174, 0.6);
  z-index: -1;
}

.common-banner-heading {
  margin: 0 0 35px;
  font-size: 54px;
  line-height: 1.2;
  color: #fff;
}

.breadcrumb {
  background-color: var(--primary-color);
  width: fit-content;
  border: 1px solid var(--secondary-color);
  color: #fff;
  padding: 8px 15px;
  border-radius: 7px;
  font-size: 16px;
  line-height: 1.2;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.img-with-shadow {
  border-radius: 20px;
  box-shadow: 0 64px 200px rgba(0, 0, 0, 0.1);
}

.cont {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) 1fr;
  gap: 24px;
  /* width: min(1440px, 94vw); */
  margin: 0 auto;
  padding: 48px 20px 96px;
}

/* Left column (auto height, page scroll) */
.text-column {
  padding-right: 12px;
}

.intro {
  margin-bottom: 48px;
}

.text-block {
  padding: 24px 20px;
  margin-bottom: 56px;
  min-height: 100vh;
  transition: border-color 0.25s ease, background 0.25s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.text-block h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
}
.text-block p {
  margin: 0;
  color: #334155;
}

.text-block .about-img {
  display: none;
}
.text-block.is-active {
  /* border-color: var(--accent);
  background: #eff6ff; */
}

/* Right column (sticky preview) */
.image-column {
  position: sticky;
  top: 0;
  align-self: start;
  height: 100vh;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.stage {
  position: relative;
  width: 100%;
  height: 100%;
}

.stage img {
  position: absolute;
  inset: 0;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 0; /* GSAP controls opacity/scale */
  transform: scale(1.06);
  pointer-events: none;
  will-change: opacity, transform;
}

.text-column p {
  font-size: 20px;
  margin-bottom: 20px;
}

section.dark-half-sec {
    background: linear-gradient(90deg,rgba(42, 102, 174, 1) 50%, rgba(0, 173, 239, 1) 50%);
}

.achivements {
    background-image: var(--bg-img);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 180px 0;
    position: relative;
    z-index: 1;
}

.achivements:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: -1;
}

.achivements p {
  font-size: 22px;
  font-weight: 600;
}

.experr-img-full {
    width: 100%;
    height: 600px;
}

.experr-img-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-choose-wrap .single-why-choose.col-50 {
    width: 50%;
}

.large-banner-content .breadcrumb {
  margin-left: auto;
  margin-right: auto;
}

.common-banner.larger {
    padding-top: 530px;
    padding-bottom: 70px;
}

.common-banner.larger:after {
  background: linear-gradient(180deg, #0000003D 45%, #000 100%);
}

.service-single-content h2 {
    font-weight: 600;
    font-size: 30px;
    margin-top: 0;
    border-top: 1px solid #ddd;
    padding-top: 1rem;
}

.service-single-content h2:first-of-type {
  border-top: none;
}

.service-single-content h3 {
    font-weight: 600;
    font-size: 26px;
    margin-top: 0;
    font-weight: 500;
}

.service-single-content p {
    margin-top: 0;
}

.service-single-content a {
  color: var(--primary-color);
  border-bottom: 1px solid var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: all .3s;
}

.service-single-content a:hover {
  border-bottom-color: transparent;
}

.single-cta-inner {
    padding: 40px 20px;
}

.single-service-cta {
    background-image: linear-gradient(180deg, #E2F0FF 0%, #B6D9FD 100%);
    position: relative;
    min-height: 59vh;
    z-index: 1;
    width: 90%;
    margin-left: auto;
    border-radius: 10px;
    overflow: hidden;
}

.single-service-cta:before {
    content: '';
    position: absolute;
    background-image: url(https://amoharecruitment.com/wp-content/uploads/2025/09/Asset-028.png);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: 100% auto;
}

.home_page_faq_wrap.ps-0.pe-0 {
    padding-left: 0;
    padding-right: 0;
}

.single-cta-inner h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
}

.single-cta-inner a:hover {
  border-bottom-color: inherit;
}

.all-services-block {
    margin-top: 50px;
    width: 90%;
    margin-left: auto;
    padding: 40px;
    background-color: var(--primary-color);
    border-radius: 10px;
}

.all-services-block ul {
    margin: 0;
    padding: 0;
}

.all-services-block ul li {
    list-style: none;
    padding-left: 20px;
    position: relative;
}

.all-services-block ul li a {
    color: #fff;
    border-color: #fff;
}

.all-services-block ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.all-services-block ul li:before {
    content: '\f061';
    position: absolute;
    font-size: 16px;
    font-family: FontAwesome;
    left: -5px;
    color: #fff;
}

.svg-icon-wrap {
    width: 75px;
    height: 75px;
    background: rgba(42,102,174, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border: 1px solid var(--secondary-color);
}

.svg-icon-wrap .svg {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    padding: 8px;
    border-radius: 10px;
}

.social-icons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
    position: relative;
}

.social-icons-grid:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    border-top: 1px dashed var(--secondary-color);
    top: calc(50% - 20px);
    left: 50%;
    transform: translate(-50%, -50%);
}

.social-icons-grid:before {
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    border-left: 1px dashed var(--secondary-color);
    top: 50%;
    left: calc(50% - 10px);
    transform: translate(-50%, -50%);
}

.single-social-icon {
    padding: 15px;
}

.contact-form {
    padding: 40px;
    background: rgba(42,102,174, 0.2);
    border-radius: 20px;
}

.contact-form .wpforms-container {
    margin: 0 !important;
}

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

.blog-grid .single-blog .single-blog-img {height: 240px;position: relative;}

.blog-grid .single-blog .single-blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-grid .single-blog {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 30px 50px rgba(0,0,0,0.03);
}

.blog-grid .single-blog .single-blog-img .blog-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary-color);
    min-width: 65px;
    padding: 10px;
    border-radius: 6px;
    text-align: center;
}

.blog-grid .single-blog .single-blog-img .blog-date .date {
    font-size: 32px;
    line-height: 120%;
    color: #fff;
}

.blog-grid .single-blog .single-blog-img .blog-date .month {
  font-size: 18px;
  line-height: 120%;
  color: #fff;
}

.single-blog-meta {
    padding: 15px;
}

.blog-title {
    font-size: 24px;
    line-height: 130%;
}

.single-blog-meta a {
    color: var(--black-color);
    font-weight: bold;
    transition: all .3s;
}

.single-blog-meta a:hover {
    color: var(--primary-color);
}

.single-cta {
  text-align: end;
}

.single-cta a {
  text-decoration: none;
  border-bottom: none;
  display: block;
  width: 100%;
}

.single-cta a img {
  width: 90%;
}

.max-w-800 {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-inline: 20px;
}

.yt-video {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  height: 601px;
  max-width: 1400px;
  margin-inline: auto;
  background-image: url(https://amoharecruitment.com/wp-content/uploads/2025/10/home1-popup-bg.jpg);
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.yt-video:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,0.5);
  z-index: -1;
}

.yt-video .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.yt-video .play-btn i {
    font-size: 100px;
    color: #fff;
}

.content-col {
  width: calc(33.33% - 10px);
}

.single-drive-box {
    width: 20%;
    text-align: center;
    padding: 0 20px;
}

.single-drive-box .drive-box-inner {
    padding: 20px;
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 20px;
}

.single-drive-box .drive-box-inner .drive-box-icon {
    width: 90px;
    height: 90px;
    background: var(--light-bg);
    border-radius: 50%;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
}

.single-drive-box .drive-box-inner .drive-box-icon svg {
    width: 75%;
}

.link-btn {
    display: inline-block;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    position: relative;
    margin: auto;
    padding: 0 5px;
}

.link-btn i {
    transform: rotate(-45deg);
}

.link-btn:before {
    content: '';
    position: absolute;
    bottom: 0;
    background: #fff;
    width: 100%;
    height: 1px;
    left: 0;
    transition: all 0.3s;
}

.link-btn:hover:before {
    width: 20px;
}

.testimonials {
    background-color: #f5f5f5;
}

.single-social-icon .single-icon-meta a {
    color: inherit;
}

.btn.normal {
    padding: 22px 28px 22px 28px;
    width: auto;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255,255,255,0.2);
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.footer-row .footer-col {
    width: 25%;
    padding: 30px;
}

.footer-row .footer-col:not(:last-of-type) {
    border-right: 1px solid rgba(255,255,255,0.2);
}

.footer-row .footer-col .footer-logo {
    text-align: left;
}

.footer-row .footer-col .footer-info {
    text-align: left;
}

.footer-row .footer-col h3 {
    margin: 0;
}

.footer-row .footer-col ul {
    margin: 20px 0 0 0;
    padding: 0;
    list-style: none;
}

.footer-row .footer-col ul li {padding: 5px 0;}

.footer-row .footer-col ul li a {
    color: #fff;
    text-decoration: none;
}

.footer-row .footer-col ul li a:hover {
    color: var(--primary-color);
}

.footer-row .footer-col ul.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.footer-row .footer-col ul.social-links li {
    padding: 0;
}

.footer-row .footer-col ul.social-links li a {
    background-color: #fff;
    color: var(--primary-color);
    display: inline-flex;
    width: 56px;
    height: 56px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 28px;
}

.footer-row .footer-col ul.social-links li a:hover {
    color: #fff;
    background-color: var(--primary-color);
}

.site-nav .menu-finflow-header-menu-container ul li.menu-item-has-children {
    position: relative;
    padding-right: 10px;
}

.site-nav .menu-finflow-header-menu-container ul li .sub-menu {
    position: absolute;
    width: 100%;
    min-width: 290px;
    background-color: #fff;
    padding: 20px 10px;
    border-radius: 10px;
    box-shadow: 0 -3px 23px rgba(0, 0, 0, 0.06);
    top: 35px;
    transform: translateY(50px);
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}

.site-nav .menu-finflow-header-menu-container ul li.menu-item-has-children:hover .sub-menu {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.site-nav .menu-finflow-header-menu-container ul li .sub-menu li {
    padding: 10px 0;
}

/* .site-nav .menu-finflow-header-menu-container ul li.menu-item-has-children:before {
    content: '\f078';
    position: absolute;
    font-family: 'FontAwesome';
    right: 10px;
    font-size: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: inherit;
} */

span.submenu-toggle {
    position: absolute;
    right: 4px;
}

.content-inner {
    box-shadow: 0 0 32px 0 rgba(26, 47, 106, 0.08);
    border-radius: 6px;
    overflow: hidden;
}

.container-inner-block {
    padding: 30px;
}

.content-inner .single-feature-img {
    max-height: 550px;
    overflow: hidden;
}

.content-inner .single-feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-meta ul {
    margin: 0;
    padding: 0;
}

.blog-meta ul li {
    list-style: none;
    display: inline-block;
    margin: 0 10px 0 0;
    color: var(--primary-color);
}

.container-inner-block hr {
    margin: 20px 0;
    border-top-color: rgba(0,0,0,0.3);
}

.container-inner-block table {
    width: 100%;
    border: 1px solid;
    border-collapse: collapse;
}

.container-inner-block table td {
    padding: 10px 15px;
    border: 1px solid;
}

.container-inner-block table th {
    background: #f5f5f5;
    padding: 20px;
}

.container-inner-block .post-table {
    width: 100%;
    overflow: hidden;
}

.container-inner-block .post-table > div {
    width: 100%;
    overflow: auto;
}
/* Responsive: stack on small screens */
@media (max-width: 1024px) {
  .btn {
    width: 160px;
    height: 56px;
    padding: 12px 10px 12px 18px;
  }

  .btn .btn-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
  }

  .btn .btn-icon i {
    font-size: 16px;
  }

  .site-nav .menu-finflow-header-menu-container ul li a {
    padding: 0 10px;
  }

  .top-header ul li {
    font-size: 14px;
  }

  .main-header .custom-logo {
    max-width: 150px;
}

.header-btn .btn-icon {
    display: none;
}

.header-btn .btn {
    width: auto;
    padding: 14px 18px;
    height: auto;
}

.home-banner-content {
    width: 100%;
    align-items: flex-start;
}

.home-banner-content .btn {
    width: auto;
    display: inline-flex;
}

.home-banner-content .btn .btn-icon {
    margin-left: 8px;
}

.single-strategy {
    width: calc(50% - 36px);
}

.expert-col {
    width: 100%;
}

.expert-col.pe-80 {
    padding-right: 0;
}

.expert-col + .expert-col {
    margin-top: 50px;
}

.single-engagement .engagement-inner .engagement-content h3 {
    padding-left: 30px;
}

.single-engagement .engagement-inner .engagement-content {
    height: auto;
    padding: 20px;
}

.single-engagement .engagement-inner {
    height: auto;
}

.why-choose .col-30.pr-40 {
    width: 100%;
    padding-right: 0;
}

.why-choose .col-70 {
    width: 100%;
    margin-top: 50px;
}

.why-choose-wrap .single-why-choose {
    width: 100%;
}

.why-choose.services .why-choose-wrap .single-why-choose {
    width: 100%;
}

.single-process {
    width: 50%;
}

.stage img {
    position: relative;
    opacity: 1;
    transform: none;
    inset: unset;
}

.image-column {
    height: auto;
}

.text-block {
    min-height: max-content;
}

section.dark-half-sec .col-50 {
    width: 100%;
    padding: 0;
}

section.dark-half-sec .col-50 + .col-50 {
    margin-top: 50px;
}

section.dark-half-sec {
    background: linear-gradient(180deg,rgba(42, 102, 174, 1) 50%, rgba(0, 173, 239, 1) 50%);
}

section.dark-half-sec .col-50 + .col-50 .dark-half-content {
    margin-top: 150px;
}
.text-block .about-img {
  display: block;
  margin-top: 40px;
}
.stage {
    display: none;
}

aside.image-column {
    display: none;
}

.cont {
    padding-bottom: 0;
}
.blog-grid {
    grid-template-columns: repeat(2, 1fr);
}
.contact-section .col-50 {
    width: 100%;
    padding: 0;
}

.contact-section .col-50 + .col-50 {
    margin-top: 50px;
}

section.expert-sec {
    padding: 100px 0;
}

.about-sec-new .col-60.pr-50 {
    width: 100%;
    padding-right: 0;
}

.about-sec-new .col-40.pl-50 {
    padding-left: 0;
    width: 100%;
    margin-top: 40px;
}

.single-drive-box {
    width: 50%;
}

.single-drive-box:nth-child(n+3) {
    margin-top: 40px;
}
section.service-single-content .col-70 {
    width: 100%;
}
section.service-single-content .col-30 {
    width: 100%;
}
.single-service-cta {
  margin-left: 0;
  margin-top: 40px;
  width: 100%;
}
.all-services-block {
  width: 100%;
}
.footer-row .footer-col {
    width: 50%;
}

.footer-row .footer-col:nth-child(n+3) {
    border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-row .footer-col:nth-child(even) {
    border-right: none;
}
}

@media (max-width: 900px) {
  .cont {
    grid-template-columns: 1fr;
  }
  .image-column {
    height: auto; /* smaller sticky area on mobile */
  }
}

@media (max-width: 767px) {
  .pr-40 {
    padding-right: 0px;
  }

  .pr-50 {
    padding-right: 0px;
  }

  .pr-30 {
  padding-right: 0px;
}

.pl-30 {
  padding-left: 0px;
}

  .pl-50 {
    padding-left: 0px;
  }
  .ml-md-auto {
  margin-left: 0;
}

.mr-md-auto {
  margin-right: 0;
}
.col-70 {
  width: 100%;
  margin-bottom: 40px;
}
.col-30 {
  width: 100%;
}

.site-nav .menu-finflow-header-menu-container ul li .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
  position: relative;
  top: 0;
  padding: 10px;
}

span.submenu-toggle {
    top: 14px;
    right: 20px;
}

.site-nav .menu-finflow-header-menu-container ul li .sub-menu li {
    padding: 0;
}

.site-nav .menu-finflow-header-menu-container ul li .sub-menu a {
    padding: 15px;
}

.common-banner.larger {
    padding-top: 150px;
}

.common-banner-heading {
    font-size: 30px;
    font-weight: 600;
}

.service-single-content h2 {
  font-size: 22px;
}

.single-service-cta {
    width: 100%;
}

.all-services-block {
    width: 100%;
}
  .top-header {
    display: none;
  }

  .site-nav {
    display: none;
  }

  .hamburge-menu {
    display: block;
    order: 3;
    margin-left: 20px;
  }

  .header-btn {
    display: none;
    margin-left: auto;
  }

  .btn {
    width: 140px;
    height: 44px;
    border-radius: 8px;
    padding: 12px 5px 12px 8px;
  }

  .btn .btn-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
  }

  .btn .btn-icon i {
    font-size: 14px;
  }

  .site-nav {
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    top: 0;
    left: -100%;
    transition: all 0.3s;
  }

  /* .site-nav .menu-finflow-header-menu-container {
    background: #fff;
    max-width: 300px;
    height: 100%;
  } */

  .site-nav.active {
    left: 0;
  }

  .site-nav-wrapper {
    max-width: 360px;
    height: 100%;
    background: #fff;
    padding-top: 10px;
  }

  .menu-close {
    display: flex;
  }

  .site-nav .menu-finflow-header-menu-container ul {
    width: 100%;
    height: 100%;
  }

  .site-nav .menu-finflow-header-menu-container ul li {
    width: 100%;
    display: block;
    border-bottom: 1px solid rgba(42, 102, 174, 0.5);
  }

  .site-nav .menu-finflow-header-menu-container ul li a {
    padding: 20px;
    display: block;
  }
  .home-page-banner {
    height: auto;
    padding: 70px 0;
}

.home-banner-content h1 {
    font-size: 36px;
}

.home-banner-content p {
    font-size: 16px;
}

section {
  padding: 60px 0;
}

.section-title {
    font-size: 30px;
}

.single-strategy {
    width: 100%;
}

.single-strategy .strategy-meta h3 {
    font-size: 65px;
}

.single-strategy .strategy-icon-wrap {
    margin: 0 0 30px;
}

.expert-list-wrap .single-expert-item {
    width: 100%;
    border-right: none !important;
    border-bottom: 1px solid var(--secondary-color);
}

.single-engagement .engagement-inner .engagement-content > div {
    width: 100%;
}

.single-engagement .engagement-inner .engagement-content a {
  margin-left: auto;
  margin-right: auto;
}

.single-engagement .engagement-inner .engagement-content h3 {
    font-size: 24px;
}

.single-engagement:hover .engagement-inner .engagement-content h3 {
    margin-left: 50px;
}

.single-engagement:hover .engagement-inner .engagement-content p {
    margin: 0;
    width: 100%;
}

.engagement-list {
    gap: 0;
}

.single-engagement .engagement-inner .engagement-content p {
    width: 100%;
}

.single-industry {
    width: 100% !important;
}

.industry-list {
    flex-wrap: wrap;
    row-gap: 30px;
}

.single-process {
    width: 100%;
}

.home_page_faq_wrap {
    padding: 0;
}

.faq_que h4 {
    width: calc(100% - 40px);
}

.col-50 {
    width: 100%;
}

.col-50 + .col-50 {
    margin-top: 40px;
}

.cont {
    padding: 0;
}

article.text-block {
    margin-bottom: 20px;
}
.blog-grid {
    grid-template-columns: repeat(1, 1fr);
}

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

.social-icons-grid:before, .social-icons-grid:after {
    display: none;
}

.single-social-icon {
    border-bottom: 1px dashed var(--primary-color);
}

.contact-form {
    padding: 20px;
}

.experr-img-full {
    height: 210px;
}

.content-col {
    width: 100%;
}

.single-drive-box {
    width: 100%;
}

.single-drive-box:nth-child(n+2) {
    margin-top: 20px;
}

.btn.normal + .btn.normal {
    margin-top: 10px;
}

.footer-row .footer-col {
    width: 100%;
    border-right: none !important;
}

.footer-row .footer-col .footer-logo {
    text-align: center;
}

.footer-row .footer-col .footer-info {
    text-align: center;
}

.single-cta a img {
  width: 100%;
}

}
