/*
Theme Name: digipronix
Author: digipronix
Version: 1.0
*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #1070e2;
  --text-color: #000;
  --bg-color: #ffffff;
  --highlight-color: #030b47;
  --bg-off-white: #f7f7f7;
}

body {
  font-family: "Quicksand", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

.container {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
}

.d-flex {
  display: flex;
}
.d-inline-flex {
  display: inline-flex;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.align-center {
  align-items: center;
}

.overflow-hidden {
  overflow: hidden;
}

.position-relative {
  position: relative;
}

.text-decoration-none {
  text-decoration: none;
}

.cursor-pointer {
  cursor: pointer;
}

.d-grid {
  display: grid;
}

.flex-1 {
  flex: 1;
}

.w-100 {
  width: 100%;
}
.h-100 {
  height: 100%;
}

.flex-column {
  flex-direction: column;
}

.text-center {
  text-align: center;
}

/* TOP BAR */

.top-bar {
  background: var(--bg-off-white);
  padding: 12px 0;
}

.phone,
.email {
  gap: 8px;
  font-size: 16px;
}

.phone span,
.email span {
  color: var(--primary-color);
  font-weight: 700;
}

.phone a,
.email a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 700;
}

/* HEADER */

.navbar {
  background: var(--bg-color);
  padding: 20px 0;
  z-index: 1000;
}

.logo img {
  width: 220px;
  display: block;
  height: auto;
}

.menu {
  gap: 45px;
  list-style: none;
}

.menu > li {
  position: relative;
}

.menu > li > a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text-color);
  font-size: 16px;
  font-weight: 700;
  transition: 0.3s;
}

.menu > li > a:hover,
.current-menu-item > a,
.current_page_item > a,
.current-menu-ancestor > a {
  color: var(--primary-color);
}

.menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 3px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: 0.3s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'%3E%3Cpath d='M0.246498 0.246496C0.168391 0.323966 0.106396 0.416133 0.0640891 0.517682C0.0217818 0.619231 0 0.728153 0 0.838163C0 0.948173 0.0217818 1.05709 0.0640891 1.15864C0.106396 1.26019 0.168391 1.35236 0.246498 1.42983L4.41317 5.5965C4.49063 5.6746 4.5828 5.7366 4.68435 5.77891C4.7859 5.82121 4.89482 5.84299 5.00483 5.84299C5.11484 5.84299 5.22376 5.82121 5.32531 5.77891C5.42686 5.7366 5.51903 5.6746 5.5965 5.5965L9.76316 1.42983C9.84127 1.35236 9.90327 1.26019 9.94557 1.15864C9.98788 1.05709 10.0097 0.948172 10.0097 0.838162C10.0097 0.728153 9.98788 0.619231 9.94557 0.517682C9.90327 0.416132 9.84127 0.323965 9.76316 0.246496C9.6857 0.168389 9.59353 0.106394 9.49198 0.0640865C9.39043 0.0217791 9.28151 0 9.1715 0C9.06149 0 8.95257 0.0217791 8.85102 0.0640865C8.74947 0.106394 8.6573 0.168389 8.57983 0.246496L5.00483 3.82983L1.42983 0.246496C1.35236 0.168389 1.2602 0.106394 1.15865 0.0640869C1.0571 0.0217795 0.948175 0 0.838165 0C0.728155 0 0.619234 0.0217795 0.517684 0.0640869C0.416135 0.106394 0.323968 0.168389 0.246498 0.246496Z' fill='black'/%3E%3C/svg%3E");
}

/* SUBMENU */

.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  list-style: none;
  background: var(--bg-color);
  border-radius: 10px;
  padding: 10px 0;
  top: calc(100% + 15px);
  margin-top: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: 0.35s ease;
  z-index: 999;
}

.menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sub-menu li {
  position: relative;
}

.sub-menu li a {
  display: block;
  padding: 12px 20px;
  text-decoration: none;
  color: var(--text-color);
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
}

.sub-menu li a:hover {
  background: #f5f5f5;
  color: var(--primary-color);
}

.sub-menu .sub-menu {
  top: 0;
  left: 100%;
  margin-top: 0;
}

.demo-btn {
  background: var(--primary-color);
  color: var(--bg-color) !important;
  font-size: 18px;
  font-weight: 700;
  padding: 16px 28px !important;
  border-radius: 60px;
  max-width: max-content;
  transition: 0.3s;
}

.demo-btn:hover {
  background: var(--primary-color);
}

.logo {
  flex: 1 1 25%;
  width: 25%;
}

.nav-menu {
  justify-content: end;
  gap: 20px;
  flex: 1 1 75%;
  width: 75%;
}

.hamburger {
  width: 26px;
  height: 19px;
  display: none;
}

.hamburger span {
  height: 3px;
  background: var(--text-color);
  border-radius: 20px;
  transition: 0.35s;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu-header {
  display: none;
}

.menu {
  z-index: 9999;
}

/* section 1 home */

.first-sec-intro {
  background-color: var(--bg-color);
  background-image: var(--intro-bg-image);
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 547px;
  height: auto;
  background-position: center center;
}

.first-sec-wrapper {
  margin: auto;
  z-index: 2;
}

.hero-badge {
  padding: 11px 23px;
  border: 1px solid #00000033;
  background: var(--bg-color);
  border-radius: 50px;
  font-weight: 700;
  margin-bottom: 24px;
}

.hero-title {
  margin: 0;
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 700;
  line-height: clamp(44px, 6vw, 66px);
}

.hero-title span {
  color: var(--primary-color);
}

.hero-desc {
  max-width: 750px;
  margin: 17px auto 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
}

.hero-btn {
  margin-top: 30px;
  min-width: 240px;
  height: 60px;
  border-radius: 50px;
  background: var(--primary-color);
  color: var(--bg-color);
  font-weight: 700;
  transition: 0.3s;
}

.hero-btn:hover {
  transform: translateY(-3px);
  background: #0b61c6;
  color: var(--bg-color);
}

.trusted-client-wrapper {
  background: linear-gradient(
    90deg,
    rgba(16, 112, 226, 0) 0%,
    rgba(16, 112, 226, 0.1) 50%,
    rgba(16, 112, 226, 0) 100%
  );
  padding: 35px 20px 35px 45px;
  gap: 30px;
}

.trusted-left {
  width: 280px;
  flex-shrink: 0;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  padding-right: 30px;
}

.trusted-left h3 {
  font-size: 24px;
  line-height: 35px;
}

.logo-track {
  gap: 80px;
  width: max-content;
}

.logo-item {
  width: 128px;
  height: 46px;
  flex-shrink: 0;
}

.logo-item img {
  object-fit: contain;
  object-position: center;
}

.features-section,
.cta-section,
.workflow-section {
  padding: 50px 0;
}

.features-content {
  gap: clamp(40px, 7vw, 100px);
}

.section-tag {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: clamp(12px, 1.3vw, 22px);
}

.features-left h2 {
  font-size: clamp(24px, 4vw, 40px);
  line-height: clamp(35px, 3vw, 55px);
  font-weight: 700;
  margin-bottom: clamp(12px, 1.3vw, 22px);
}

.features-left p {
  opacity: 0.6;
  margin-bottom: clamp(12px, 1.3vw, 22px);
  line-height: 24px;
  font-weight: 600;
}

.strategy-box {
  margin-top: 35px;
}

.strategy-box h3 {
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 700;
}

.title-line {
  margin-bottom: 14px;
}

.strategy-box ul {
  padding-left: 20px;
}

.strategy-box ul li {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}

.features-right {
  border-radius: 20px;
  overflow: hidden;
  flex: 1;
  width: 100%;
}

.features-right img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.about-right-image {
  position: absolute;
  right: 0;
  top: 48%;
}

.about-right-image svg {
  border-radius: 20px;
  display: block;
}

/* home section three end */

.industries-section {
  padding: 0 0 clamp(50px, 5vw, 100px);
}

.sec-thumb-tag {
  display: block;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.sec-thumb-title {
  font-size: clamp(24px, 4vw, 40px);
  line-height: 1;
  font-weight: 700;
  margin-bottom: clamp(12px, 1.3vw, 20px);
}

.sec-thumb-desc {
  max-width: 700px;
  font-weight: 600;
  margin: 0 auto 50px;
  font-size: clamp(14px, 2vw, 18px);
  line-height: 26px;
  opacity: 0.6;
}

.industries-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 19px;
  z-index: 10;
}

.industry-card {
  background: var(--bg-off-white);
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 22px;
  transition: all 0.35s ease;
}

.industry-card:hover {
  border-color: #1070e2;
  transform: translateY(-5px);
}

.industry-card:hover .industry-icon {
  background: #1070e2;
}

.industry-card:hover .industry-icon img {
  filter: brightness(0) invert(1);
}

.industry-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bg-color);
  margin: 0 auto 20px;
  transition: 0.35s;
}

.industry-icon img {
  /* width: 36px;
    height: 36px; 
    object-fit: contain; */
}

.industry-card h3 {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
}

.industry-card.active .industry-icon {
  background: var(--primary-color);
}

.industry-card.active .industry-icon img {
  filter: brightness(0) invert(1);
}

/* section 1 home end */

.services-section {
  padding: 50px 0;
  background: var(--bg-off-white);
}

.bg-blur {
  position: absolute;
  bottom: -320px;
  /* top: 0; */
  left: -100px;
  z-index: 1;
  pointer-events: none;
}

.bg-blur svg {
  width: 500px;
  height: auto;
}

.about-testimonial-section .bg-blur-top {
  top: -190px;
}

.about-right-vector {
  position: absolute;
  right: 0px;
  /* top: 106%; */
  top: 700px;
  height: 400px;
  z-index: -1;
}
.bg-blur-top svg {
  width: 400px;
  height: auto;
}

.bg-blur-top {
  position: absolute;
  top: -100px;
  right: 0px;
  z-index: 1;
  pointer-events: none;
}

.bg-blur-top svg {
  width: 400px;
  height: auto;
}

.bg-blur-left {
  position: absolute;
  top: -66%;
  left: 0px;
  z-index: 1;
  pointer-events: none;
}

.bg-blur-left svg {
  width: 400px;
  height: auto;
}

.bg-blur-center-left {
  position: absolute;
  top: 15%;
  left: 0px;
  z-index: -1;
  pointer-events: none;
}

.bg-blur-center-left svg {
  width: 450px;
  height: auto;
}
.contact-left-vector {
  position: absolute;
  bottom: -13%;
  left: 0px;
  z-index: -1;
  pointer-events: none;
}

.contact-left-vector svg {
  width: 300px;
  height: auto;
}

.bg-blur-blog-left {
  position: absolute;
  bottom: 0;
  left: 0px;
  z-index: 1;
  pointer-events: none;
}

.bg-blur-blog-left svg {
  width: 400px;
  height: auto;
}

.bg-blur-blog-right {
  position: absolute;
  top: 0;
  right: 0px;
  z-index: 1;
  pointer-events: none;
}

.bg-blur-blog-right svg {
  width: 400px;
  height: auto;
}
.contact-right-vector {
  position: absolute;
  top: -12%;
  right: 0px;
  z-index: -1;
  pointer-events: none;
}

.contact-right-vector svg {
  width: 400px;
  height: auto;
}

.services-grid {
  z-index: 10;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  background: var(--bg-color);
  border-radius: 18px;
  padding: 21px 24px;
  gap: 18px;
  transition: 0.35s;
  border: 2px solid transparent;
}

/* .service-card.active, */
.service-card:hover {
  border-color: var(--primary-color);
  background-color: #1070e20d;
  transform: translateY(-4px);
}

.service-icon {
  width: clamp(50px, 4vw, 70px);
  height: clamp(50px, 4vw, 70px);
  min-width: clamp(50px, 4vw, 70px);
  border-radius: 50%;
  background: var(--primary-color);
}

.service-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-color);
  line-height: 1.3;
  margin-bottom: 10px;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;

  min-height: 52px;
}

.service-content p {
  opacity: 0.6;
  margin-bottom: 18px;
  line-height: 23px;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.service-content a {
  margin-top: auto;
  font-size: 18px;
  color: var(--primary-color);
  font-weight: 700;
  gap: 7px;
}

.cta-section {
  padding-left: 15px;
  padding-right: 15px;
}

.cta-box {
  background: linear-gradient(
    180deg,
    rgba(16, 112, 226, 0.1) 0%,
    rgba(16, 112, 226, 0.2) 50%,
    rgba(16, 112, 226, 0.1) 100%
  );
  border-radius: 30px;
  padding: 43px 30px !important;
}

.cta-box h2 {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 15px;
  line-height: 1.2;
}

.cta-box p {
  max-width: 800px;
  margin: 0 auto 35px;
  font-size: 16px;
  line-height: 25px;
  font-weight: 600;
}

.cta-btn {
  min-width: 240px;
  height: 60px;
  padding: 0 25px;
  background: var(--primary-color);
  color: var(--bg-color);
  border-radius: 999px;
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
}

/* LATEST BLOGS SECTION */
.latest-blogs-section {
  background: var(--highlight-color);
  padding: 50px 0;
}

.latest-blogs-header {
  gap: 20px;
  margin-bottom: 45px;
}

.latest-blogs-label {
  display: block;
  color: var(--primary-color);
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.latest-blogs-title {
  color: var(--bg-color);
  font-size: clamp(24px, 4vw, 40px);
  line-height: 1.3;
  font-weight: 700;
}

.latest-blogs-view-all {
  min-width: 140px;
  height: 50px;
  padding: 0 28px;
  border-radius: 50px;
  background: var(--primary-color);
  color: var(--bg-color);
  font-weight: 600;
  font-size: 18px;
  flex-shrink: 0;
  transition: 0.3s;
}

.latest-blogs-view-all:hover {
  background: #1070e2;
  color: var(--bg-color);
  transform: translateY(-2px);
}

.latest-blogs-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--bg-color);
  border-radius: 20px;
}
.blog-card a {
  color: var(--text-color);
}

.blog-card-image img {
  width: 100%;
  height: 209px;
  object-fit: cover;
  display: block;
}

.blog-card-body {
  padding: 24px 22px 20px;
}

.blog-card-tags {
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.blog-card-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
  min-height: 56px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

.blog-card-date {
  gap: 8px;
  opacity: 0.6;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 14px;
}

.blog-card-excerpt {
  opacity: 0.6;
  font-size: 16px;
  line-height: 25px;
  font-weight: 500;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

.blog-card-read-more {
  color: var(--primary-color);
  font-weight: 700;
  gap: 6px;
}

.why-choose-section {
  padding: 50px 0;
}

.why-choose-wrapper {
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.why-left {
  gap: 18px;
}

.why-item {
  gap: 20px;
  background: var(--bg-off-white);
  padding: 18px 22px;
  border-radius: 18px;
  transition: 0.3s;
}

.why-item:hover,
.why-item.active {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.why-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: var(--primary-color);
}

.why-icon img {
  width: 26px;
}

.why-text {
  font-weight: 700;
  font-size: clamp(14px, 4vw, 20px);
}

.why-arrow {
  font-size: 24px;
}

.why-right {
  height: 527px;
}

.why-image {
  object-fit: cover;
  object-position: center;
  border-radius: 30px;
}

.why-content-box {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: var(--bg-color);
  border-radius: 18px;
  padding: 22px;
}

.why-number {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--bg-color);
  margin-bottom: 15px;
  font-weight: 700;
}

.why-content-box h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 22px;
}

.why-content-box p {
  font-weight: 600;
  line-height: 1.7;
}

.testimonial-section,
.about-testimonial-section {
  padding: 50px 0;
}

.testimonial-header {
  margin-bottom: 35px;
}

.sub-title {
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
}

.testimonial-header h2 {
  font-size: clamp(24px, 4vw, 40px);
  margin-bottom: 8px;
}

.testimonial-header p {
  font-weight: 600;
  max-width: 520px;
  opacity: 0.6;
}

.testimonial-nav {
  gap: 15px;
  justify-content: end;
}

.testimonial-nav button {
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 50%;
  font-size: 22px;
  transition: 0.3s;
}

.testomonial-btn {
  background: #e7f1fc;
}

.testomonial-btn:hover {
  background: var(--primary-color);
}

.testomonial-btn:hover svg path {
  fill: var(--bg-color);
}

.testimonial-track {
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.testimonial-card {
  flex: 0 0 calc((100% - 40px) / 3);
  margin-right: 20px;
  background: var(--bg-off-white);
  border-radius: 18px;
  min-height: 310px;
  padding: 20px;
  box-sizing: border-box;
}

.testimonial-card p {
  opacity: 0.6;
  line-height: 26px;
  font-size: 18px;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-bottom: 42px;
  min-height: 72px;
}

.author {
  gap: 12px;
  margin-top: auto;
}

.avatar-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-color);
  font-weight: 600;
  margin-bottom: 14px;
  font-size: 18px;
}

.stars {
  color: #ffb300;
  margin-bottom: 12px;
  margin-top: 7px;
  gap: 8px;
}

.author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.author h4 {
  margin: 0;
  font-weight: 700;
  font-size: 20px;
}

.author span {
  opacity: 0.6;
  font-size: 14px;
}

.workflow-wrap {
  min-height: 580px;
}

.workflow-center {
  position: absolute;
  top: 24%;
  z-index: 1;
}

.workflow-center img {
  display: block;
}

.workflow-item {
  position: absolute;
  width: 320px;
  z-index: 2;
}

.item-1 {
  left: 12px;
  bottom: 0px;
}

.item-2 {
  left: 25%;
}

.item-3 {
  right: 25%;
  bottom: 0;
}

.item-4 {
  right: 1%;
  /* top:40px; */
}

.workflow-item img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin: 0 auto 20px;
}

.workflow-item h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  min-height: 56px;
  align-items: flex-end;
  margin-bottom: 10px;
}

.workflow-item p {
  font-size: 14px;
  line-height: 23px;
  font-weight: 600;
  opacity: 0.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  min-height: 70px;
}

/* FOOTER CONTACT SECTION */

.footer-contact-grid {
  grid-template-columns: minmax(375px, 30%) 1fr;
  gap: 20px;
  align-items: stretch;
  padding-bottom: 50px;
}

.footer-contact-info {
  border: 1px solid var(--text-color);
  padding: 30px;
}

.contact-form-wrap {
  padding: 34px 38px;
}

.footer-contact-info,
.contact-form-wrap {
  background: var(--bg-off-white);
  border-radius: 30px;
}

.footer-contact-header {
  margin-bottom: 50px;
}

.footer-contact-illustration {
  max-width: 320px;
  margin: 0 auto 25px;
}

.footer-contact-illustration svg,
.footer-contact-illustration img {
  width: 100%;
  height: 220px;
}

.footer-info-heading {
  font-size: clamp(18px, 3vw, 30px);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 24px;
}

.footer-info-heading--team {
  margin-top: 34px;
}

.footer-info-list {
  list-style: none;
}

.footer-info-list li {
  gap: 16px;
  margin-bottom: 20px;
}

.footer-info-list li:last-child {
  margin-bottom: 0;
}

.footer-info-icon {
  width: 22px;
  flex-shrink: 0;
  color: var(--text-color);
}

.footer-info-icon svg,
.footer-info-icon img {
  width: 20px;
  height: 20px;
}

.footer-info-list a {
  color: var(--text-color);
  text-decoration: none;
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 600;
  transition: color 0.3s;
}

.footer-info-list a:hover {
  color: var(--primary-color);
}

.contact-form {
  gap: 16px;
}

.contact-form-row {
  gap: 18px;
}

.contact-form-row--two {
  grid-template-columns: 1fr 1fr;
}

.contact-form-group {
  gap: 8px;
}

.contact-form-group label {
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 700;
  color: var(--text-color);
}

.contact-form-group input,
.contact-form-group textarea {
  outline: none;
  box-shadow: none;
  width: 100%;
  border-radius: 15px;
  font-size: 16px;
  padding: 16px;
  border: 0;
  height: 70px;
  font-family: inherit;
  font-weight: 600;
  color: var(--text-color);
  background: var(--bg-color);
  outline: none;
}

.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {
  opacity: 0.6;
  font-weight: 500;
}

.form-group input:focus,
.form-group select:focus,
.contact-form-group input:focus,
.contact-form-group textarea:focus,
.connect-zone-wrapper input:focus,
.connect-zone-wrapper select:focus,
.connect-zone-wrapper textarea:focus {
  border: 1px solid var(--primary-color);
}

.contact-form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.footer-recaptcha-placeholder {
  gap: 12px;
  border: 1px solid #fafafa;
  border-radius: 15px;
  background: var(--bg-color);
  padding: 21px 18px;
  max-width: 400px;
}

.footer-recaptcha {
  gap: 16px;
  border-radius: 15px;
  color: var(--bg-color);
  font-family: inherit;
  background: #1a2889;
  padding: 21px 18px;
  max-width: 400px;
  margin-top: 20px;
}

.footer-recaptcha-check {
  width: 22px;
  height: 22px;
  border: 1px solid var(--text-color);
  border-radius: 6px;
  font-weight: 600;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
}

.footer-recaptcha-check:checked::after {
  content: "✓";
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 700;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.footer-recaptcha-checkBox {
  width: 22px;
  height: 22px;
  border: 1px solid var(--bg-color);
  border-radius: 6px;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
}

.footer-recaptcha-checkBox:checked::after {
  content: "✓";
  color: var(--bg-color);
  font-size: 16px;
  font-weight: 700;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.footer-recaptcha-text {
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 700;
  font-family: inherit;
}

.form-submit,
#form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: 270px;
  height: 70px;
  border: 0;
  border-radius: 50px;
  background: var(--primary-color);
  color: var(--bg-color);
  font-family: inherit;
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 700;
  cursor: pointer;
}

.form-submit:hover,
#form-submit:hover {
  background: #0b61c6;
  transform: translateY(-2px);
}

/* SITE FOOTER */

.site-footer {
  background: linear-gradient(180deg, #030b42 0%, #001290 100%);
  color: var(--bg-color);
}

.footer-main {
  padding: 55px 0 45px;
}

.footer-top-row {
  gap: 30px;
  margin-bottom: 40px;
}

.footer-logo-box {
  background: var(--bg-color);
  border-radius: 10px;
  padding: 0;
  flex-shrink: 0;
}

.footer-logo-box img {
  max-width: 245px;
  height: auto;
  display: block;
}

/* .footer-logo-text {
  color: var(--highlight-color);
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
} */

.footer-description {
  max-width: 530px;
  font-size: 14px;
  line-height: 20px;
  color: var(--bg-color);
  font-weight: 500;
}

.footer-columns {
  grid-template-columns: 1.1fr 1fr 1fr 1.6fr;
  gap: 30px;
}

.footer-col-title {
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.footer-contact-details {
  list-style: none;
}

.footer-contact-details li {
  gap: 14px;
  margin-bottom: 18px;
  color: var(--bg-color);
  font-size: 16px;
  font-weight: 500;
  max-width: 300px;
  line-height: 1.6;
}

.footer-contact-details li:last-child {
  margin-bottom: 0;
}

.footer-detail-icon {
  width: 18px;
  margin-top: 3px;
  flex-shrink: 0;
  color: var(--bg-color);
}

.footer-detail-icon svg {
  width: 20px;
  height: 20px;
}

.footer-contact-details strong {
  display: block;
  color: var(--primary-color);
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 700;
  margin-bottom: 5px;
}

.footer-contact-details a {
  color: var(--bg-color);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links-list {
  list-style: none;
}

.footer-links-list li {
  position: relative;
  padding-left: 14px;
  margin-bottom: 14px;
}

.footer-links-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--bg-color);
}

.footer-links-list a {
  color: var(--bg-color);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-links-list a:hover {
  color: var(--primary-color);
}

.footer-newsletter-text {
  color: var(--bg-color);
  margin-bottom: 16px;
  font-weight: 500;
}

.footer-newsletter-field {
  align-items: stretch;
  border-radius: 60px;
  margin-bottom: 20px;
}

.footer-newsletter-field input {
  min-width: 0;
  border: 0;
  color: var(--bg-color);
  padding: 14px 22px;
  height: 50px;
  background-color: #1b2774;
  font-family: inherit;
  font-size: 14px;
  outline: none;
}

.footer-newsletter-field input::placeholder {
  color: var(--bg-color);
}

.submit-btn {
  border: 0;
  background: var(--primary-color);
  color: var(--bg-color);
  padding: 20px 32px;
  font-family: inherit;
  font-size: 18px;
  border-radius: 60px;
  min-width: 190px;
  font-weight: 700;
  white-space: nowrap;
}

.footer-newsletter-field button:hover {
  background: #0b61c6;
}

.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.75);
}

.footer-bottom-flex {
  gap: 20px;
  flex-wrap: wrap;
  font-size: clamp(14px, 3vw, 18px);
  font-weight: 600;
}

.footer-cookie-link {
  color: var(--bg-color);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-cookie-link:hover {
  color: var(--bg-color);
}

.footer-copyright {
  color: var(--bg-color);
}

.footer-social {
  gap: 12px;
  color: var(--bg-color);
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #3441a2;
}

.footer-social a:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}

/* about page css start */

.banner-section {
  min-height: 330px;
  justify-content: start;
  z-index: 1;
  inset: 0;
  background-image: inherit;
  background-position: right;
  background-repeat: no-repeat;
  z-index: -1;
}

.banner-content {
  z-index: 2;
  max-width: 640px;
}

.about-section {
  padding: 50px 0;
}
.blog-section {
  padding: 70px 0;
}

.about-wrapper {
  grid-template-columns: 1.13fr 1fr;
  gap: 40px;
}

.about-image {
  height: 350px;
  border-radius: 20px;
}

.about-image img {
  object-fit: cover;
}

.about-content h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  margin-bottom: 10px;
}

.about-content p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  opacity: 0.6;
  margin-bottom: 24px;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-list li {
  margin-bottom: 15px;
  font-weight: 600;
  gap: 15px;
}

.mission-section {
  padding: 50px 0;
}

.mission-heading {
  margin-bottom: 55px;
}

.mission-grid {
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #00000033;
}

.mission-card {
  padding: 50px 20px;
  border-right: 1px solid #00000033;
  background-color: var(--bg-color);
}

.mission-card:last-child {
  border-right: 0;
}

.mission-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
}

.mission-icon img {
  object-fit: contain;
}

.mission-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 6px;
}

.mission-card p {
  font-size: 16px;
  line-height: 25px;
  font-weight: 500;
  margin: 0;
}

.team-section {
  background: #030b47;
  padding: 50px 0;
  margin-top: 50px;
}

.team-subtitle {
  color: var(--primary-color);
  text-transform: uppercase;
  margin-bottom: 15px;
}

.team-title {
  color: var(--bg-color);
  margin: 0;
}

.team-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-top: 50px;
}

.team-card {
  background: var(--bg-color);
  border-radius: 20px;
  transition: 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
}

.team-image {
  aspect-ratio: 420 / 370;
  border-radius: 20px;
}

.team-image img {
  object-fit: cover;
  object-position: center;
}

.team-content {
  padding: 18px 26px;
}

.team-content h3 {
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 700;
}

.team-content p {
  font-size: clamp(16px, 3vw, 18px);
  font-weight: 500;
  margin: 0;
}

.core-value-section {
  padding: 50px 0;
}

.core-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.section-tag {
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  margin-bottom: 50px;
}

.core-card {
  background: var(--bg-off-white);
  border-radius: 20px;
  padding: 18px 22px;
  align-items: flex-start;
  gap: 18px;
  height: 100%;
}

.core-icon {
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-color);
}

.core-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.core-content {
  margin-top: 16px;
}

.core-content h3 {
  font-size: 20px;
  margin-bottom: 12px;
  line-height: 30px;
  font-weight: 600;
}

.core-content p {
  font-size: 16px;
  line-height: 23px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  opacity: 0.6;
}

.core-value-bg-blur {
  position: absolute;
  left: -70px;
  top: -35%;
  z-index: -1;
  pointer-events: none;
  border-radius: 100%;
}

.core-value-bg-blur svg {
  height: auto;
  width: 500px;
}

.working-process-section {
  background: var(--bg-off-white);
  padding: 50px 0;
}

.working-process-grid {
  grid-template-columns: 410px 1fr;
  gap: 24px;
  align-items: stretch;
  margin-top: 40px;
}

.working-process-left {
  min-height: 480px;
  border-radius: 25px;
  background-size: cover;
  background-position: center;
}

.working-process-left .overlay {
  position: absolute;
  inset: 0;
  background: #003e87e5;
}

.left-content {
  z-index: 2;
  padding: 40px;
}

.left-content .small-title {
  color: var(--bg-color);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
  display: block;
}

.left-content h3 {
  color: var(--bg-color);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.3;
  margin-bottom: 40px;
}

.process-btn {
  width: 200px;
  height: 70px;
  border-radius: 50px;
  font-size: 20px;
  border: 3px solid var(--bg-color);
  color: var(--bg-color);
  background-color: var(--primary-color);
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}

.process-btn:hover {
  background: var(--bg-color);
  color: #0b63f6;
}

.process-cards {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.process-card {
  background: var(--bg-color);
  border-radius: 22px;
  padding: 23px;
}

.process-number {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 6px;
}

.process-card h4 {
  color: var(--primary-color);
  font-size: clamp(16px, 3vw, 20px);
  font-weight: 700;
  margin-bottom: 8px;
}

.process-card p {
  color: #6c6c6c;
  line-height: 20px;
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

/* about page css end */

.seo-contact-section {
  padding: 23px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.seo-contact-section .container {
  z-index: 2;
}

.seo-contact-wrapper {
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.seo-contact-content {
  max-width: 650px;
}

.seo-contact-content h2 {
  font-size: clamp(32px, 3.5vw, 46px);
  line-height: clamp(52px, 4.5vw, 66px);
  font-weight: 700;
  margin-bottom: 25px;
}

.seo-contact-description p {
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 18px;
}

.seo-contact-form {
  background: var(--bg-color);
  border-radius: 18px;
  min-width: 530px;
  padding: 28px;
}

.form-group {
  margin-bottom: 16px;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
}

.form-group input::placeholder,
.form-group select::placeholder {
  color: var(--text-color);
}

.form-group input {
  width: 100%;
  height: 70px;
  font-weight: 500;
  font-weight: 600;
  font-family: inherit;
  font-size: 16px;
  padding: 0 20px;
  border: 1px solid var(--bg-off-white);
  border: 0;
  border-radius: 15px;
  background: var(--bg-off-white);
  outline: none;
}

.form-group input:focus {
  border-color: var(--primary-color);
}

/* Wrapper */
.wpcf7-form-control-wrap {
  position: relative;
  display: block;
}

/* Select */
.wpcf7-form-control-wrap select {
  width: 100%;
  height: 70px;
  padding: 0 45px 0 18px;
  font-weight: 600;
  border-radius: 12px;
  border: 0;
  background: var(--bg-off-white);
  font-size: 16px;
  font-family: inherit;
  cursor: pointer;
  border: 0;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* Custom Arrow - only for select field */
.wpcf7-form-control-wrap:has(select)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #666;
  border-bottom: 2px solid #666;
  transform: translateY(-60%) rotate(45deg);
  pointer-events: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder,
.form-group .form-control::placeholder,
.form-group::placeholder {
  font-weight: 500 !important;
  font-size: 16px;
  opacity: 0.6;
  opacity: 1;
}

/* .form-group .phone-input {
  padding-left: 90px;
} */

/* .form-group .country-flag {
  position: absolute;
  margin-left: 20px;
  height: 71px;
  z-index: 10;
  width: 32px;
}

.form-group .country-flag svg {
  width: 100%;
  height: auto;
} */

/* .form-group .country-code {
  position: absolute;
  font-size: 16px;
  font-weight: 600;
  height: 71px;
  z-index: 10;
  margin-left: 60px;
} */

#iti-0__search-input {
  height: 41px;
  padding-left: 30px;
  border-radius: 0;
  width: 100%;
}
.iti {
  width: 100%;
}
.iti__selected-country-primary {
  padding-left: 10px !important;
}
.iti__selected-country {
  height: 70px !important;
}
.iti__selected-dial-code {
  font-weight: 500;
}

.thumb-submit-btn .wpcf7-spinner {
  margin: 0;
}

.stats-section {
  padding: 50px 0;
}

.stats-wrapper {
  background: linear-gradient(
    90deg,
    rgba(16, 112, 226, 0) 0%,
    rgba(16, 112, 226, 0.1) 50%,
    rgba(16, 112, 226, 0) 100%
  );
  padding: 38px 20px;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 54px;
  background: #bac1ca;
}

.stat-item h3 {
  margin: 0 0 8px;
  color: var(--primary-color);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.stat-item p {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.industry-services {
  padding: 0 0 clamp(50px, 5vw, 80px);
}

.industry-services .container {
  max-width: 1020px;
}

.industry-services-desc {
  max-width: 880px;
}

.industry-list {
  flex-wrap: wrap;
  gap: 20px;
}

.industry-item {
  gap: 10px;
  height: 70px;
  font-size: 18px;
  padding: 11px 22px;
  background: var(--bg-off-white);
  border-radius: 50px;
  transition: 0.3s;
}

.industry-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.industry-item img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.industry-item span {
  font-size: 18px;
  font-weight: 600;
}

.faq-services {
  padding: 0 0 clamp(50px, 5vw, 80px);
}

.faq-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.faq-column {
  gap: 18px;
}

.faq-item {
  background: var(--bg-off-white);
  border-radius: 20px;
  transition: 0.3s;
}

.faq-question {
  background: transparent;
  border: none;
  padding: 21px 22px;
  height: 80px;
  font-family: inherit;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
}

.faq-answer {
  max-height: 0;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 0 22px 25px;
  margin: 0;
  font-weight: 500;
  line-height: 22px;
  font-size: 14px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-icon {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-icon svg {
  display: block;
}

.seo-timeline-section {
  padding: 50px 0 0px;
  background-color: var(--bg-off-white);
}

.seo-timeline-wrapper {
  grid-template-columns: 440px 1fr;
  gap: 60px;
}

.seo-timeline-left h2 {
  font-size: clamp(24px, 4vw, 40px);
  line-height: clamp(50px, 4vw, 60px);
  font-weight: 700;
  margin-bottom: clamp(12px, 1.3vw, 20px);
}

.seo-timeline-left p {
  font-weight: 600;
  margin: 0 auto 47px;
  font-size: 16px;
  line-height: 26px;
  opacity: 0.6;
}

.timeline-list::before {
  content: "";
  position: absolute;
  left: 33px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary-color);
}

.timeline-item {
  gap: 20px;
  padding-bottom: 70px;
}

.timeline-icon {
  width: 70px;
  min-width: 70px;
  height: 70px;
  background: var(--bg-color);
  border-radius: 50%;
  z-index: 2;
}

.timeline-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.timeline-content {
  padding-top: 20px;
}

.timeline-content h3 {
  font-size: 20px;
  margin-bottom: 18px;
  font-weight: 700;
}

.timeline-content p {
  line-height: 27px;
  font-weight: 500;
  margin: 0;
}

.seo-services-grid {
  padding: 50px 0 0;
  font-family: inherit;
}

.services-seo-grid {
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #00000033;
  border-left: 1px solid #00000033;
}

.service-seo-card {
  border-right: 1px solid #00000033;
  border-bottom: 1px solid #00000033;
  padding: 48px 15px;
  background-color: var(--bg-color);
  min-height: 280px;
  text-decoration: none;
}

.service-seo-icon {
  margin-bottom: 32px;
}

.service-seo-icon img {
  object-fit: contain;
}

.service-seo-card h3 {
  color: var(--primary-color);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-seo-card p {
  line-height: 25px;
  font-weight: 500;
  font-size: 16px;
  margin: 0;
}

.service-card-cta {
  background: #156fe5;
  color: var(--bg-color);
}

.service-card-cta h3 {
  color: var(--bg-color);
  font-size: 20px;
  margin: 0;
  max-width: 180px;
}

.services-bottom-text {
  margin-top: 25px;
  font-weight: 600;
}

.seo-services-slider {
  padding: clamp(50px, 5vw, 80px) 0;
}

.case-study-slider {
  overflow: visible;
  padding: 0 80px;
}

.slider-wrapper {
  transition: transform 0.6s ease;
  will-change: transform;
}

.slide-gallery {
  flex: 0 0 100%;
  min-width: 100%;
  padding: 0 30px;
  box-sizing: border-box;
}

.slide-gallery img {
  display: block;
  border-radius: 24px;
  object-fit: cover;
}

/* Navigation Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
  border: none;
  border-radius: 50%;
  background: var(--bg-off-white);
  z-index: 20;
}

.slider-btn.prev {
  left: 10px;
}

.slider-btn.next {
  right: 10px;
}

.slider-btn svg {
  width: 12px;
  height: 20px;
}

.slider-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.slider-desc {
  margin: 0 auto 40px;
}

.blog-top {
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 15px;
}

.blog-top h2 {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 700;
  margin: 0;
}

.blog-search-form {
  max-width: 420px;
}

.search-box input {
  height: 70px;
  padding: 0 20px 0 52px;
  border: none;
  outline: none;
  background: var(--bg-off-white);
  border-radius: 20px;
  font-family: inherit;
  font-size: 20px;
  font-weight: 600;
  box-sizing: border-box;
}

.search-box input::placeholder {
  opacity: 1;
}

.search-icon {
  position: absolute;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
  pointer-events: none;
}

/* 
.blog-search-form button {
  display: none;
} */

.blog-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.blog-grid .blog-card {
  border: 1px solid #00000020;
}

.blog-pagination {
  margin-top: 60px;
}

.blog-pagination ul {
  gap: 18px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-pagination li {
  list-style: none;
}

.blog-pagination a,
.blog-pagination span {
  width: 90px;
  height: 90px;
  border: 1px solid #00000010;
  border-radius: 20px;
  text-decoration: none;
  font-size: 24px;
  font-weight: 600;
  transition: all 0.3s ease;
  color: var(--text-color);
}

.blog-pagination a.pagination-arrow {
  width: 120px;
}

.blog-pagination .current {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--bg-color);
}

.blog-pagination a:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--bg-color);
}

.blog-pagination .dots {
  border: none;
  width: auto;
  height: auto;
  background: transparent;
}

.single-blog-section {
  padding: clamp(35px, 3vw, 60px) 0;
}

.single-blog-section .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 15px;
}

.blog-layout {
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.blog-title {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  line-height: clamp(31px, 3vw, 40px);
  margin-bottom: 27px;
}

.blog-image {
  margin-bottom: 25px;
}

.blog-image img {
  width: 100%;
  display: block;
  border-radius: 20px;
  height: auto;
}

.blog-meta {
  margin-bottom: 30px;
}

.author-box {
  gap: 15px;
}

.author-box img {
  width: 60px;
  height: 60px;
  border-radius: 10px;
}

.author-box h5 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.author-box span {
  display: block;
  margin-top: 4px;
  opacity: 0.6;
  font-size: 14px;
  font-weight: 500;
}

.blog-description {
  font-size: 16px;
  overflow-wrap: break-word;
  word-break: break-word;
}

.blog-description p {
  line-height: 25px;
  font-weight: 500;
}

.blog-description h2 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 10px;
}

.blog-description ul,
.blog-description ol {
  line-height: 25px;
  font-weight: 500;
  padding-left: 20px;
}

.blog-description li {
  margin-bottom: 10px;
}

/* Sidebar */

.blog-sidebar {
  position: sticky;
  top: 30px;
}

.sidebar-widget {
  margin-bottom: 25px;
}

.search-box-single {
  background: var(--bg-off-white);
  border-radius: 20px;
  padding: 8px;
}

.search-box-single input {
  border: none;
  background: transparent;
  height: 55px;
  padding: 0 20px 0 42px;
  font-size: 16px;
  outline: none;
}

.search-box-single button {
  border: none;
  background: var(--primary-color);
  color: var(--bg-color);
  font-weight: 600;
  min-width: 110px;
  border-radius: 50px;
  font-size: 16px;
  font-family: inherit;
}

.recent-post {
  padding: 18px 0 10px;
  border-bottom: 1px solid #e5e5e5;
}

.recent-post:last-child {
  border-bottom: 0;
}

.recent-post a {
  display: block;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
  color: var(--text-color);
  transition: 0.3s;
}

.recent-post a:hover {
  color: var(--primary-color);
}

.recent-post span {
  display: block;
  margin-top: 7px;
  opacity: 0.6;
  font-size: 14px;
}

.contact-section {
  padding: clamp(80px, 3vw, 180px) 0 clamp(50px, 3vw, 100px);
}

.contact-section {
  padding: 80px 0;
}

.contact-form-wrapper {
  background: var(--bg-color);
  border: 1px solid #dfe3ea;
  border-radius: 28px;
  padding: 50px 25px 50px 270px;
  margin-left: 180px;
  width: calc(100% - 180px);
}

.connect-side-panel {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  max-width: 100%;
  background: var(--bg-off-white);
  border-radius: 30px;
  padding: 30px;
  z-index: 10;
  box-sizing: border-box;
}

/* .connect-info-icon {
  width: 24px;
  text-align: center;
  font-size: 18px;
  flex-shrink: 0;
} */

.contact-form input::placeholder,
.contact-form textarea::placeholder,
.form-control::placeholder,
.phone-input::placeholder {
  font-weight: 500 !important;
  font-size: 16px;
  opacity: 0.6;
  opacity: 1;
}

.connect-zone-wrapper {
  padding-top: clamp(28px, 3vw, 52px);
}
/* 
.connect-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
} */

.contact-form-group label {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 5px;
}

.connect-zone-wrapper input,
.connect-zone-wrapper select,
.connect-zone-wrapper textarea {
  width: 100%;
  border: 1px solid transparent;
  background: var(--bg-off-white);
  border-radius: 15px;
  padding: 10px 20px;
  font-family: inherit;
  font-size: 16px;
  height: 70px;
  outline: none;
}

.connect-field textarea {
  height: 130px;
  resize: none;
}

/* .connect-submit-btn {
  margin-top: 20px;
  min-width: 220px;
  height: 58px;
  border: none;
  border-radius: 40px;
  background: var(--primary-color);
  color: var(--bg-color);
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
} */

.message-box {
  height: 140px !important;
  min-height: 140px;
  max-height: 140px;
  resize: none;
}

.cv-upload-box {
  border: 2px dashed rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  padding: 40px 20px;
}
.codedropz-upload-handler {
  border-color: rgba(0, 0, 0, 0.2);
}

.cv-upload-box input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.cv-upload-box .dnd-upload-status {
  pointer-events: none;
}

.codedropz-upload-container {
  padding: 20px;
}

.codedropz-upload-handler {
  margin-bottom: 0;
}

@media (max-width: 1350px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 1260px) {
  .workflow-wrap {
    min-height: 580px;
  }

  .workflow-center {
    top: 23%;
  }
}

@media (max-width: 1199px) {
  .mission-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mission-card:nth-child(2) {
    border-right: 0;
  }

  .mission-card:nth-child(1),
  .mission-card:nth-child(2) {
    border-bottom: 1px solid #dcdcdc;
  }
}

@media (max-width: 1150px) {
  .workflow-wrap {
    min-height: 520px;
  }

  .workflow-center {
    top: 26%;
  }

  .workflow-item {
    width: 255px;
  }
}

@media (max-width: 1100px) {
  .footer-columns {
    grid-template-columns: 1fr 1fr;
    gap: 35px 25px;
  }

  .working-process-grid {
    grid-template-columns: 1fr;
  }

  .process-cards,
  .services-seo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .seo-timeline-wrapper {
    grid-template-columns: 340px 1fr;
    gap: 40px;
  }
}

@media (max-width: 1024px) {
  .services-grid,
  .latest-blogs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-icon img {
    width: clamp(22px, 4vw, 28px);
    height: clamp(22px, 4vw, 28px);
    object-fit: contain;
  }

  /* .contact-form-group input,
  .contact-form-group textarea {
    height: 45px;
    border-radius: 8px;
  } */

  #form-submit,
  .form-submit {
    width: 170px;
    height: 50px;
  }
}

@media (max-width: 992px) {
  .top-flex {
    gap: 8px;
  }

  .menu-item-has-children.active > a::after {
    transform: rotate(180deg);
  }

  .logo,
  .nav-menu {
    flex: auto;
    width: auto;
  }

  .phone,
  .email {
    font-size: 15px;
  }

  .logo img {
    width: 170px;
  }

  .hamburger {
    display: flex;
  }

  .desktop-btn {
    margin: 15px 0;
  }

  .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 90%;
    max-width: 420px;
    height: 100vh;
    background: var(--bg-color);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 25px;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    z-index: 9999;
  }

  .menu.active {
    transform: translateX(0);
  }

  .menu > li {
    width: 100%;
    border-bottom: 1px solid #eee;
  }

  .menu > li > a {
    padding: 15px 0;
    justify-content: space-between;
    width: 100%;
  }

  .sub-menu {
    position: static;
    min-width: 100%;
    margin: 0;
    padding: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-radius: 0;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease;
  }

  .sub-menu li a {
    padding: 12px 20px;
    font-size: 16px;
  }

  .mobile-menu-header {
    display: flex;
    padding-bottom: 12px;
    border-bottom: 1px solid #e5e5e5;
  }

  .mobile-logo img {
    width: 160px;
    display: block;
    height: auto;
  }

  .menu-close {
    background: none;
    border: 0;
    padding: 0;
    font-size: 42px;
    line-height: 1;
    cursor: pointer;
    color: var(--text-color);
  }

  /* section 1 home */

  .first-sec-intro {
    min-height: 500px;
  }

  .hero-btn {
    min-width: 220px;
    height: 60px;
  }

  /* setcion 1 home end */

  .features-content {
    flex-direction: column-reverse;
  }

  .features-right {
    aspect-ratio: auto;
  }

  .about-right-image,
  .bg-blur,
  .bg-blur-top,
  .core-value-bg-blur,
  .bg-blur-left,
  .bg-blur-center-left,
  .bg-blur-blog-left,
  .bg-blur-blog-right,
  .about-right-vector,
  .contact-right-vector,
  .contact-left-vector {
    display: none;
  }

  /* industry section */
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-choose-wrapper {
    grid-template-columns: 1fr;
  }

  .why-right {
    height: 100%;
    aspect-ratio: 1 / 1;
  }

  .workflow-wrap {
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .workflow-item h3 {
    align-items: flex-start;
    line-height: 1;
    min-height: auto;
  }

  .workflow-center {
    display: none;
  }

  .workflow-item {
    position: static;
    width: 100%;
    max-width: 500px;
    margin: auto;
  }

  .workflow-item img {
    width: 160px;
    height: 160px;
    margin: 0;
  }

  .testimonial-card {
    min-width: calc(50% - 15px);
  }

  .footer-contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-form-wrap {
    padding: 25px;
  }

  .footer-top-row {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .footer-description {
    max-width: 550px;
  }

  .banner-section {
    padding: 80px 0;
  }

  .team-grid,
  .core-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .core-grid.last-two .core-card:nth-last-child(2),
  .core-grid.last-two .core-card:last-child {
    grid-column: auto;
  }

  .seo-contact-wrapper {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .seo-contact-content {
    max-width: 100%;
  }

  .seo-contact-form {
    min-width: auto;
    width: 100%;
    margin: 0 auto;
  }

  .form-group input,
  .wpcf7-form-control-wrap select,
  .connect-zone-wrapper input,
  .connect-zone-wrapper select,
  .connect-zone-wrapper textarea,
  .contact-form-group input,
  .contact-form-group textarea
  /* .form-group .country-code 
  .form-group .country-flag */ {
    height: 53px;
    border-radius: 12px;
  }

  .iti__selected-country {
    height: 52px !important;
  }

  .stats-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .stat-item:nth-child(2)::after,
  .stat-item:not(:last-child)::after {
    display: none;
  }

  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    height: 300px;
  }

  .case-study-slider {
    padding: 0 60px;
  }

  .slide-gallery {
    padding: 0 10px;
  }

  .slider-btn {
    width: 48px;
    height: 48px;
  }

  .slider-btn.prev {
    left: 5px;
  }

  .slider-btn.next {
    right: 5px;
  }

  .faq-grid,
  .blog-layout
  /* .connect-grid */ {
    grid-template-columns: 1fr;
  }

  .faq-question {
    font-size: 16px;
    padding: 20px;
  }

  .faq-answer p {
    padding: 0 20px 20px;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-sidebar {
    position: static;
  }

  .connect-zone-wrapper {
    padding-top: 120px;
  }

  .connect-side-panel {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 100px);
  }

  .contact-form-wrapper {
    margin-top: 225px;
    margin-left: 0;
    padding: 380px 25px 25px;
    width: 100%;
  }

  .upload-cv-wrapper {
    padding: 240px 25px 25px;
  }

  .connect-zone-wrapper {
    margin-top: 40px;
  }

  .blog-search-form {
    max-width: 520px;
  }
}

@media (max-width: 768px) {
  .first-sec-intro {
    min-height: auto;
  }

  .first-sec-wrapper {
    padding: 80px 0;
  }

  .hero-badge {
    font-size: 14px;
    padding: 10px 18px;
    margin-bottom: 20px;
  }

  .hero-desc {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.6;
  }

  .hero-btn {
    margin-top: 30px;
    min-width: 200px;
    height: 54px;
  }

  .trusted-client-wrapper {
    flex-direction: column;
    padding: 18px;
  }

  .trusted-left {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding-right: 0;
    padding-bottom: 20px;
    text-align: center;
  }

  .logo-item {
    width: 108px;
    height: 38px;
  }

  /* features home */
  .features-left,
  .features-right {
    max-width: 100%;
    width: 100%;
  }

  .features-right img {
    height: auto;
    aspect-ratio: 4/3;
  }

  /* industry */
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-box {
    padding: 40px 20px !important;
    border-radius: 20px;
  }

  .cta-box p {
    font-size: 15px;
  }

  .cta-btn {
    width: 100%;
    max-width: 320px;
  }

  .latest-blogs-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .blog-card-image img {
    height: 100%;
  }

  .service-card {
    padding: 20px;
  }

  .footer-recaptcha-badge svg {
    width: 35px;
    height: 37px;
  }

  .footer-recaptcha-placeholder,
  .footer-recaptcha {
    padding: 12px 16px;
  }

  .testimonial-nav button {
    width: 45px;
    height: 45px;
  }

  /* footer last sec */

  .footer-contact-header {
    margin-bottom: 28px;
  }

  .footer-main {
    padding: 40px 0 35px;
  }

  .footer-columns {
    gap: 15px;
  }

  .footer-bottom-flex {
    flex-direction: column;
    gap: 14px;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-logo-box img {
    max-width: 210px;
  }

  /* .contact-form-group input,
  .contact-form-group textarea {
    border-radius: 4px;
  } */

  .seo-timeline-wrapper {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .timeline-icon {
    width: 52px;
    min-width: 52px;
    height: 52px;
  }

  .timeline-icon img {
    width: 25px;
    height: 25px;
  }

  .timeline-list::before {
    left: 25px;
  }

  .timeline-content {
    padding-top: 12px;
  }

  .seo-timeline-left h2 {
    line-height: clamp(30px, 4vw, 60px);
  }

  .industry-item {
    height: 56px;
  }

  .industry-item span {
    font-size: 16px;
  }

  .faq-icon svg {
    width: 12px;
    height: 12px;
  }

  .faq-question {
    height: 60px;
  }

  .blog-search-form {
    max-width: max-content;
  }

  .contact-form-wrapper {
    padding: 330px 25px 25px;
  }

  .upload-cv-wrapper {
    padding: 210px 25px 25px;
  }

  .connect-side-panel {
    padding: 25px;
  }

  .connect-side-title,
  .connect-team-title {
    font-size: 26px;
  }

  .timeline-item {
    padding-bottom: 50px;
  }

  .blog-top {
    margin-bottom: 35px;
  }

  .service-seo-icon img {
    width: 80px;
    height: 90px;
  }
  .service-seo-icon {
    margin-bottom: 10px;
  }
}

@media (max-width: 767px) {
  .case-study-slider {
    padding: 0 32px;
  }

  .slide-gallery {
    padding: 0 5px;
  }

  .slide-gallery img {
    border-radius: 16px;
  }

  .slider-btn {
    width: 30px;
    height: 30px;
  }

  .slider-btn svg {
    width: 10px;
    height: 14px;
  }

  .slider-btn.prev {
    left: 0;
  }

  .slider-btn.next {
    right: 0;
  }

  .slider-desc {
    margin: 0 auto 25px;
  }
}

@media (max-width: 650px) {
  .footer-columns,
  .core-grid,
  .process-cards,
  .mission-grid,
  .contact-form-row--two {
    grid-template-columns: 1fr;
  }

  .core-card {
    flex-direction: column;
    gap: 15px;
  }

  .core-content p {
    -webkit-line-clamp: unset;
  }

  .core-content {
    margin: 0;
  }

  .left-content h3 {
    font-size: 32px;
  }

  .left-content {
    padding: 20px 25px;
  }

  .seo-contact-content h2 {
    font-size: 30px;
    line-height: clamp(42px, 4.5vw, 66px);
  }

  .seo-contact-form {
    padding: 20px;
  }

  /* .form-group .country-flag {
    margin-left: 16px;
  }

  .form-group .country-code {
    margin-left: 55px;
  } */

  .about-image {
    height: 260px;
  }

  .about-list li {
    margin-bottom: 10px;
  }

  .mission-card {
    border-right: 0;
    border-bottom: 1px solid #dcdcdc;
    padding: 40px 25px;
  }

  .mission-card:last-child {
    border-bottom: 0;
  }

  .mission-card h3 {
    font-size: 26px;
  }

  .mission-icon {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 576px) {
  .logo img {
    width: 150px;
  }

  .top-flex {
    flex-direction: column;
  }

  .phone,
  .email {
    font-size: 14px;
  }

  .industries-grid,
  .workflow-wrap,
  .team-grid,
  .stats-wrapper,
  .services-seo-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .service-content a {
    justify-content: center;
  }

  .latest-blogs-view-all {
    min-width: 91px;
    height: 40px;
    padding: 0 15px;
    font-size: 14px;
  }

  .why-content-box h3 {
    font-size: 14px;
    margin-bottom: 4px;
  }

  .why-item {
    padding: 14px;
    border-radius: 12px;
  }

  .why-arrow svg {
    width: 8px;
    height: 16px;
  }

  .why-image {
    border-radius: 12px;
  }

  .why-number {
    width: 25px;
    height: 25px;
    margin-bottom: 2px;
  }

  .why-content-box {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 12px;
    border-radius: 12px;
  }

  .why-content-box p {
    font-size: 14px;
    line-height: 1.2;
  }

  .why-icon {
    width: 35px;
    height: 35px;
  }

  .why-icon img {
    width: 16px;
  }

  .testimonial-header {
    flex-direction: column;
    gap: 25px;
    align-items: stretch;
  }

  .testimonial-nav button {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .testimonial-nav button svg {
    width: 10px;
    height: 12px;
  }

  .testimonial-card {
    min-width: 100%;
    margin-right: 0;
  }

  .footer-contact-info {
    padding: 15px 20px;
    border-radius: 20px;
  }

  .contact-form-wrap {
    padding: 20px 16px;
    border-radius: 20px;
  }

  .footer-newsletter-field {
    flex-direction: column;
  }

  .footer-newsletter-field button {
    width: 100%;
    border-radius: 0 0 8px 8px;
  }

  .footer-newsletter-field input {
    border-radius: 8px 8px 0 0;
  }

  .footer-logo-box img {
    max-width: 170px;
  }

  .footer-contact-details a,
  .address-txt {
    font-size: 14px;
  }

  .submit-btn {
    padding: 15px 12px;
    min-width: 140px;
    font-size: 16px;
  }

  .testimonial-card p {
    margin-bottom: 22px;
  }

  .team-content {
    padding: 14px 20px;
  }

  .mission-heading {
    margin-bottom: 35px;
  }

  .stat-item::after {
    display: none !important;
  }

  .industry-list {
    gap: 12px;
  }

  .industry-item {
    height: 50px;
  }

  .blog-search-form {
    max-width: 100%;
  }

  .blog-card-body {
    padding: 16px;
  }

  .blog-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-top input {
    width: 100%;
  }

  .blog-pagination a,
  .blog-pagination span {
    width: 70px;
    height: 70px;
  }

  .blog-pagination a,
  .blog-pagination span {
    width: 40px;
    height: 40px;
    font-size: 16px;
    border-radius: 8px;
  }

  .blog-pagination ul {
    gap: 10px;
  }

  .blog-pagination a.pagination-arrow {
    width: 50px;
  }
  .blog-pagination a.pagination-arrow svg {
    height: 12px;
  }

  .blog-pagination {
    margin-top: 35px;
  }

  .search-box input {
    height: 55px;
    border-radius: 10px;
    font-size: 16px;
  }

  .search-box-single input {
    height: 42px;
  }

  .search-box-single button {
    min-width: 85px;
  }

  .connect-side-panel {
    width: calc(100% - 50px);
    border-radius: 20px;
  }

  .contact-form-group label {
    font-size: 16px;
  }

  .contact-form-wrapper {
    padding: 290px 15px 15px;
  }

  .upload-cv-wrapper {
    padding: 190px 15px 15px;
  }

  .connect-zone-wrapper input,
  .connect-zone-wrapper select,
  .connect-zone-wrapper textarea {
    border-radius: 8px;
    /* height: 58px; */
  }

  /* .contact-form-group .country-flag,
  .contact-form-group .country-code {
    height: 54px;
  } */

  .banner-section {
    padding: 0;
  }

  .navbar {
    padding: 14px 0;
  }
  .cta-section {
    padding: 35px 15px;
  }
  .why-choose-section,
  .features-section,
  .workflow-section,
  .services-section,
  .latest-blogs-section,
  .testimonial-section,
  .about-testimonial-section,
  .about-section,
  .blog-section,
  .mission-section,
  .team-section,
  .core-value-section,
  .working-process-section,
  .stats-section {
    padding: 35px 0;
  }

  .team-section {
    margin-top: 35px;
  }

  .sec-thumb-desc {
    margin-bottom: 35px;
  }

  .industries-section,
  .footer-contact-grid {
    padding-bottom: 35px;
  }
  .seo-services-grid {
    padding-top: 35px;
  }
}

@media (max-width: 480px) {
  .cta-box p {
    font-size: 14px;
  }

  .cta-btn {
    height: 52px;
    font-size: 13px;
  }

  .cv-upload-box,
  .codedropz-upload-container {
    padding: 14px;
  }

  .service-seo-card {
    padding: 38px 15px;
  }

  .service-seo-icon {
    margin-bottom: 22px;
  }

  .process-btn {
    width: 160px;
    height: 58px;
    font-size: 16px;
  }
  .left-content .small-title {
    font-size: 16px;
  }
}

@media (max-width: 400px) {
  .connect-side-panel {
    width: calc(100% - 20px);
    padding: 15px;
  }

  .footer-contact-illustration svg,
  .footer-contact-illustration img {
    height: 177px;
  }
  .upload-cv-wrapper {
    padding: 125px 15px 15px;
  }

  .contact-form-wrapper {
    padding: 235px 15px 15px;
  }
}

@media (min-width: 991px) {
  .menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
  }
}

@media (min-width: 993px) {
  .workflow-wrap .workflow-item img {
    display: none;
  }

  .core-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .core-card {
    grid-column: span 2;
  }

  .core-grid.last-two .core-card:nth-last-child(2) {
    grid-column: 1 / 4;
  }

  .core-grid.last-two .core-card:last-child {
    grid-column: 4 / 7;
  }
}

@media (min-width: 1350px) {
  .features-right img {
    width: 667px;
    height: 638px;
  }

  .features-right {
    aspect-ratio: auto;
  }

  .features-section,
  .cta-section,
  .workflow-section,
  .about-testimonial-section,
  .seo-services-slider,
  .core-value-section,
  .testimonial-section,
  .about-testimonial-section {
    padding: 100px 0;
  }

  .seo-timeline-section {
    padding: 90px 0 0;
  }
  .industry-services,
  .faq-services,
  .footer-contact-grid {
    padding-bottom: 100px;
  }

  .contact-section {
    padding: 180px 0 100px;
  }
}
