@charset "UTF-8";
/**************************header***********************************/
button.hamburgermenu {
  display: none;
}

header#Header {
  padding: 20px 0 20px;
  position: absolute;
  background-color: transparent;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99;
}
header#Header::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(260deg, #eb3719 0%, rgba(211, 40, 9, 0.5) 50%);
  filter: blur(200px);
  margin-right: 0%;
  margin-top: -5%;
  z-index: -1;
  pointer-events: none;
}
header#Header .row {
  display: flex;
  align-items: center;
}
header#Header .row ul#menu-header-menu {
  display: flex;
  justify-content: end;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  margin-bottom: 0 !important;
  list-style: none;
}
header#Header .row ul#menu-header-menu li {
  position: relative;
}
header#Header .row ul#menu-header-menu li a {
  text-decoration: none;
  color: #000;
}
header#Header .row ul#menu-header-menu li a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  border-radius: 4px;
  background: linear-gradient(260deg, #f7745d 0%, #dc2c0d 100%);
  bottom: 0px;
  left: 0;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.3s ease-in-out;
}
header#Header .row ul#menu-header-menu li:hover a:before {
  transform-origin: left;
  transform: scaleX(1);
}

/*************************MainBanner*******************************/
.site-content {
  overflow: hidden;
}

section.hero-section {
  background: var(--theme-color-light);
  padding: 150px 0 50px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
section.hero-section .hero-image-box {
  position: relative;
  max-width: 437px;
  height: 475px;
  width: 100%;
  float: right;
}
section.hero-section .hero-image-box::before {
  content: "";
  background: #eb3719;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  border-radius: 38px;
}
section.hero-section .hero-image-box img {
  max-width: 437px;
  height: 475px;
  border-radius: 38px;
  /*transform: rotate(4.29deg);*/
  position: relative;
  /*transition: 0.3s;*/
}
section.hero-section .hero-image-box img:hover {
  transform: rotate(0);
}
section.hero-section .intro h1 {
  font-size: 80px;
  line-height: 90px;
  margin-bottom: 20px;
}
section.hero-section .intro .designation {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
  font-family: var(--theme-heading-font);
  margin-bottom: 30px;
}
section.hero-section .bnr-buttons {
  display: flex;
  gap: 0.5rem;
  margin-top: 30px;
}
section.hero-section .social-clients {
  display: flex;
  align-items: center;
}
section.hero-section .social-clients ul {
  margin-bottom: 0;
}
section.hero-section .social-clients ul.social-links {
  display: flex;
  gap: 1.2rem;
}
section.hero-section .social-clients ul.social-links li a {
  color: rgb(8, 8, 8);
}
section.hero-section .social-clients ul.social-links li a:hover {
  color: var(--theme-color-danger);
}
section.hero-section .mx-6 {
  margin-left: 80px;
  margin-right: 80px;
}
section.hero-section span.total {
  color: rgb(8, 8, 8);
  line-height: 1;
  font-weight: 700;
  font-size: 44px;
  font-family: var(--theme-heading-font);
}
section.hero-section small.txt {
  color: #fff;
  font-size: 1.125rem;
  line-height: 1.75rem;
}

/*****************animation*******************************/
@keyframes moveUp {
  0% {
    opacity: 1;
    transform: translateX(0px) translateY(0px) scale(1);
  }
  25% {
    opacity: 0;
    transform: translateX(10px) translateY(-10px) scale(0.9);
  }
  26% {
    opacity: 0;
    transform: translateX(-10px) translateY(10px) scale(0.9);
  }
  55% {
    opacity: 1;
    transform: translateX(0px) translateY(0px) scale(1);
  }
}
a.group:hover span.animate-arrow-move-up svg {
  animation: moveUp 0.8s linear !important;
}

section.main-content {
  background: var(--theme-color-light);
  padding: 150px 0 50px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
section.main-content img {
  height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  border-radius: 38px;
  margin-bottom: 20px;
}
section.main-content blockquote {
  background-color: var(--theme-color-danger);
  border-radius: 4px;
  max-width: 100%;
  padding: 40px 30px;
  position: relative;
  margin-bottom: 40px;
  border: none;
  border-radius: 30px;
  color: var(--font-color);
  margin-top: 30px;
}
section.main-content blockquote::before {
  display: block;
  content: "\f10e";
  font-size: 40px;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: relative;
  margin: 0 0 15px;
}
section.main-content blockquote p strong {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  color: var(--theme-color-light);
  display: block;
  margin-top: 15px;
}
section.main-content blockquote p strong::before {
  display: inline-block;
  width: 35px;
  height: 2px;
  background: var(--theme-color-light);
  border-radius: 2px;
  content: "";
  position: relative;
  top: -6px;
  margin-right: 15px;
}
section.main-content ul {
  margin-bottom: 0;
  padding-left: 0;
}
section.main-content ul li {
  display: block;
  position: relative;
  z-index: 1;
  padding-left: 25px;
}
section.main-content ul li:not(:last-child) {
  margin-bottom: 10px;
}
section.main-content ul li::before {
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #eb3719;
  position: absolute;
  left: 0;
  top: 0;
}
section.main-content h6 {
  margin-bottom: 15px;
}

section.contact {
  background: var(--theme-color-light);
  padding: 150px 0 100px;
  text-align: center;
}
section.contact p {
  text-align: left;
  font-size: 18px;
}
section.contact h4 {
  color: var(--theme-color-danger);
  font-weight: 500;
}

section.contactForm {
  padding-bottom: 100px;
}
section.contactForm label {
  display: block;
  color: #6b6b6b;
  font-weight: 400;
  font-size: 12.25px;
  line-height: 17.5px;
  letter-spacing: 0px;
}
section.contactForm span.wpcf7-form-control-wrap input.wpcf7-form-control {
  border-radius: 0px;
  padding: 15px 20px 15px 0;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  border: 1px solid var(--theme-color-light);
  width: 100%;
  background-color: #fff;
  border-bottom: 1.82px solid #C0C0C0;
}
section.contactForm span.wpcf7-form-control-wrap input.wpcf7-form-control::-ms-input-placeholder {
  color: #9b9b9b;
}
section.contactForm span.wpcf7-form-control-wrap input.wpcf7-form-control:focus-visible {
  outline: none !important;
}
section.contactForm span.wpcf7-form-control-wrap select.wpcf7-form-control.wpcf7-select.wpcf7-validates-as-required {
  border-radius: 0px;
  padding: 15px 20px 15px 0;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  border: 1px solid var(--theme-color-light);
  width: 100%;
  background-color: #fff;
  border-bottom: 1.82px solid #C0C0C0;
}
section.contactForm span.wpcf7-form-control-wrap select.wpcf7-form-control.wpcf7-select.wpcf7-validates-as-required:focus-visible {
  outline: none !important;
}
section.contactForm span.wpcf7-form-control-wrap textarea {
  border-radius: 0px;
  padding: 15px 20px 15px 0;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  border: 1px solid var(--theme-color-light);
  width: 100%;
  background-color: #fff;
  border-bottom: 1.82px solid #C0C0C0;
  height: 148px;
  resize: none;
}
section.contactForm span.wpcf7-form-control-wrap textarea::-ms-input-placeholder {
  color: #9b9b9b;
}
section.contactForm span.wpcf7-form-control-wrap textarea:focus-visible {
  outline: none !important;
}

section.CommonInnerbanner {
  background: var(--theme-color-light);
  padding: 150px 0 50px;
}

.experience-wrapper {
  position: relative;
  width: 260px;
  height: 260px;
  overflow: hidden;
}

/* GREEN ARC */
.arc {
  position: absolute;
  left: -80px;
  transform: rotate(332deg);
  top: -45px;
}

.arc path {
  fill: none;
  stroke: #eb3719;
  stroke-width: 2;
  stroke-linecap: round;
}

/* NUMBER */
.count {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 88px;
  font-weight: 800;
  color: #000;
  z-index: 2;
  left: -30px;
}

/* CIRCULAR TEXT */
.circle-text {
  position: absolute;
  inset: 0;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 6px;
  text-transform: uppercase;
  transform: rotate(112deg);
}

.circle-text span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform-origin: center;
  color: #000;
}

section.work {
  background: var(--theme-color-light);
  padding: 150px 0 50px;
}
section.work .row-custom {
  display: flex;
  justify-content: center;
}
section.work .row-custom .col-custom:nth-child(1) {
  flex: 0 0 35%;
  max-width: 35%;
}
section.work .row-custom .col-custom:nth-child(2) {
  flex: 0 0 55%;
  max-width: 55%;
}
section.work .row-custom .col-custom .right-custom .custom-flex {
  display: flex;
  -moz-column-gap: 15px;
       column-gap: 15px;
  margin-top: 30px;
}
section.work .row-custom .col-custom .right-custom .custom-flex .inner-flex {
  flex: 1;
}
section.work .row-custom .col-custom .right-custom .custom-flex .inner-flex .custom-card {
  background: #f4f4f4;
  border-radius: 30px;
  padding: 40px;
  height: 100%;
  position: relative;
  transition: all 0.3s ease;
  /* DEFAULT — border bottom-right */
  box-shadow: 2px 2px 0 #eb3719;
}
section.work .row-custom .col-custom .right-custom .custom-flex .inner-flex .custom-card:hover {
  /* HOVER — border top-left */
  box-shadow: -2px -2px 0 #eb3719;
}
section.work .row-custom .col-custom .right-custom .custom-flex .inner-flex .custom-card p {
  margin-bottom: 0;
}
section.work .row-custom .col-custom .right-custom .custom-flex .inner-flex .custom-card .custom-inner-flex {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}
section.work .row-custom .col-custom .right-custom .custom-flex .inner-flex .custom-card .custom-inner-flex h4.right-title {
  margin-bottom: 0;
  font-size: 20px;
}

/******************** Waving Hand Animation ********************/
.wave-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.wave-hand {
  width: 42px; /* adjust if needed */
  display: inline-block;
  transform-origin: 70% 70%;
  animation: wave-hand 1.8s infinite;
}

/* Waving keyframes */
@keyframes wave-hand {
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(14deg);
  }
  20% {
    transform: rotate(-8deg);
  }
  30% {
    transform: rotate(14deg);
  }
  40% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(10deg);
  }
  60% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
footer#Footer .copyright-text {
  padding: 20px 0;
  border-top: 1px solid #ddd;
  text-align: center;
}/*# sourceMappingURL=style.css.map */