@import url("https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --body: #0F1F1F;
  --black: #000;
  --white: #fff;
  --theme: #b20e20
;
  --header: #0E121D;
  --text: #4D5765;
  --border: #E4E4E4;
  --bg: #F8F8F8;
  --bg-2: #000;
  --bg-3: #F8F5F0;
  --box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
}

.theme-btn {
  background-color: var(--theme);
  color: var(--white);
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  font-family: Public Sans;
  padding: 22px 30px;
  border-radius: 0;
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 1;
  line-height: 1;
}
@media (max-width: 1199px) {
  .theme-btn {
    padding: 18px 16px;
  }
}
.theme-btn::before {
  content: "";
  background-color: var(--header);
  width: 0;
  height: 50%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: -1;
}
.theme-btn::after {
  content: "";
  background-color: var(--header);
  width: 0;
  height: 50%;
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: -1;
}
.theme-btn.theme-border {
  background-color: transparent;
  border: 1px solid var(--white);
}
.theme-btn.theme-border::before {
  background-color: var(--theme) !important;
}
.theme-btn.theme-border::after {
  background-color: var(--theme) !important;
}
.theme-btn.theme-border:hover {
  color: var(--white) !important;
  border: 1px solid var(--theme) !important;
}
.theme-btn i {
  margin-left: 5px;
}
.theme-btn:hover {
  color: var(--white);
}
.theme-btn:hover::before, .theme-btn:hover::after {
  width: 100%;
}
@media (max-width: 767px) {
  .theme-btn {
    padding: 20px 32px;
  }
}
@media (max-width: 575px) {
  .theme-btn {
    padding: 18px 30px;
    font-size: 14px;
  }
}

.link-btn {
  font-size: 14px;
  font-weight: 700;
  color: var(--theme);
  font-family: Public Sans;
  display: inline;
}
.link-btn i {
  margin-left: 5px;
  color: var(--theme);
}
.link-btn.style-2 {
  border-bottom: 1px solid var(--theme);
  padding-bottom: 5px;
}

/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
body {
  font-family: "Public Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--text);
  background-color: var(--white);
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

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

button {
  border: none;
  background-color: transparent;
  padding: 0;
}

input:focus {
  color: var(--text);
  outline: none;
}

input {
  color: var(--text);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Exo", sans-serif;
  margin: 0px;
  padding: 0;
  color: var(--header);
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}

h1 {
  font-size: 110px;
  font-weight: 500;
}
@media (max-width: 1600px) {
  h1 {
    font-size: 70px;
  }
}
@media (max-width: 1199px) {
  h1 {
    font-size: 60px;
  }
}
@media (max-width: 991px) {
  h1 {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  h1 {
    font-size: 30px;
  }
}

h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 120%;
}
@media (max-width: 1199px) {
  h2 {
    font-size: 35px;
  }
}
@media (max-width: 991px) {
  h2 {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  h2 {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  h2 {
    font-size: 30px;
  }
}
@media (max-width: 470px) {
  h2 {
    font-size: 25px;
  }
}

h3 {
  font-size: 30px;
  font-weight: 700;
  line-height: 133%;
}
@media (max-width: 1399px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-size: 24px;
  font-weight: 600;
  line-height: 141%;
}
@media (max-width: 1399px) {
  h4 {
    font-size: 20px;
  }
}

h5 {
  font-size: 20px;
  font-weight: 600;
}
@media (max-width: 575px) {
  h5 {
    font-size: 20px;
  }
}

h6 {
  font-size: 16px;
  font-weight: 600;
}

a {
  text-decoration: none;
  outline: none !important;
  cursor: pointer;
  color: var(--header);
  transition: all 0.4s ease-in-out;
}

p {
  margin: 0px;
  transition: all 0.4s ease-in-out;
}

span {
  margin: 0px;
  transition: all 0.4s ease-in-out;
}

.about-wrapper {
  margin-top: 30px;
}
.about-wrapper .about-left-item .client-image {
  margin-bottom: 20px;
}
.about-wrapper .about-left-item .counter-content {
  display: flex;
  align-items: center;
}
.about-wrapper .about-left-item .counter-content h3 {
  font-weight: 600;
  transform: rotate(-90deg);
}
.about-wrapper .about-left-item .counter-content h4 {
  color: var(--text);
  font-size: 20px;
  font-weight: 600;
}
.about-wrapper .about-left-item .about-left-image {
  margin-top: 140px;
  max-width: 427px;
}
@media (max-width: 1199px) {
  .about-wrapper .about-left-item .about-left-image {
    margin-top: 30px;
    max-width: initial;
  }
}
.about-wrapper .about-left-item .about-left-image img {
  width: 100%;
  height: 100%;
}
.about-wrapper .about-right-item {
  margin-left: 30px;
}
@media (max-width: 1199px) {
  .about-wrapper .about-right-item {
    margin-left: 0;
  }
}
.about-wrapper .about-right-item p {
  max-width: 516px;
}
.about-wrapper .about-right-item .about-items {
  display: flex;
  gap: 50px;
  margin-top: 60px;
}
@media (max-width: 1199px) {
  .about-wrapper .about-right-item .about-items {
    margin-top: 30px;
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .about-wrapper .about-right-item .about-items {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.about-wrapper .about-right-item .about-items .content .about-list {
  margin-top: 180px;
}
@media (max-width: 1199px) {
  .about-wrapper .about-right-item .about-items .content .about-list {
    margin-top: 30px;
  }
}
.about-wrapper .about-right-item .about-items .content .about-list li {
  color: var(--header);
}
.about-wrapper .about-right-item .about-items .content .about-list li:not(:last-child) {
  margin-bottom: 12px;
}
@media (max-width: 1199px) {
  .about-wrapper .about-right-item .about-items .content .about-list li {
    font-size: 14px;
  }
}
.about-wrapper .about-right-item .about-items .content .about-list li i {
  margin-right: 5px;
  color: var(--theme);
}
.about-wrapper .about-right-item .about-items .about-right-image {
  max-width: 454px;
}
@media (max-width: 1199px) {
  .about-wrapper .about-right-item .about-items .about-right-image {
    max-width: 389px;
  }
}
@media (max-width: 991px) {
  .about-wrapper .about-right-item .about-items .about-right-image {
    max-width: initial;
  }
}
.about-wrapper .about-right-item .about-items .about-right-image img {
  width: 100%;
  height: 100%;
}

.about-section {
  position: relative;
}
.about-section .top-shape {
  position: absolute;
  top: 0;
  right: 90px;
}
@media (max-width: 1199px) {
  .about-section .top-shape {
    display: none;
  }
}
.about-section .left-shape {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 1199px) {
  .about-section .left-shape {
    display: none;
  }
}

.about-wrapper-2 {
  margin-top: 40px;
}
.about-wrapper-2 .about-image {
  max-width: 381px;
}
@media (max-width: 1199px) {
  .about-wrapper-2 .about-image {
    max-width: initial;
  }
}
.about-wrapper-2 .about-image img {
  width: 100%;
  height: 100%;
}
.about-wrapper-2 .about-content {
  margin-left: 20px;
}
@media (max-width: 1199px) {
  .about-wrapper-2 .about-content {
    margin-left: 0;
  }
}
.about-wrapper-2 .about-content p {
  max-width: 478px;
  font-size: 16px;
  font-weight: 400;
}
.about-wrapper-2 .about-content .about-button {
  margin-top: 40px;
}
@media (max-width: 1199px) {
  .about-wrapper-2 .about-content .about-button {
    margin-top: 30px;
  }
}
.about-wrapper-2 .about-right-item .counter-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .about-wrapper-2 .about-right-item .counter-item {
    flex-wrap: wrap;
  }
}
.about-wrapper-2 .about-right-item .counter-item h2 {
  color: var(--theme);
  font-size: 56px;
  font-weight: 700;
}
@media (max-width: 1199px) {
  .about-wrapper-2 .about-right-item .counter-item h2 {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .about-wrapper-2 .about-right-item .counter-item h2 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .about-wrapper-2 .about-right-item .counter-item h2 {
    font-size: 35px;
  }
}
@media (max-width: 575px) {
  .about-wrapper-2 .about-right-item .counter-item h2 {
    font-size: 30px;
  }
}
.about-wrapper-2 .about-right-item .counter-item h3 {
  font-size: 18px;
  font-weight: 500;
}
.about-wrapper-2 .about-right-item .about-right-image {
  position: relative;
  max-width: 245px;
}
@media (max-width: 1199px) {
  .about-wrapper-2 .about-right-item .about-right-image {
    max-width: initial;
  }
}
.about-wrapper-2 .about-right-item .about-right-image img {
  width: 100%;
  height: 100%;
}
.about-wrapper-2 .about-right-item .about-right-image .about-small-image {
  max-width: 248px;
  position: absolute;
  left: -150px;
  bottom: -70px;
}
@media (max-width: 1199px) {
  .about-wrapper-2 .about-right-item .about-right-image .about-small-image {
    max-width: 160px;
    left: 0;
    bottom: 0;
  }
}
@media (max-width: 991px) {
  .about-wrapper-2 .about-right-item .about-right-image .about-small-image {
    max-width: initial;
  }
}
.about-wrapper-2 .about-right-item .about-right-image .about-small-image img {
  width: 100%;
  height: 100%;
}

.about-section-2 {
  margin-top: 80px;
}
@media (max-width: 1600px) {
  .section-padding {
    margin-top: 0;
  }
}

@-webkit-keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}
@keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}
@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rounded {
  50% {
    transform: rotate(15deg);
  }
}
@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@-webkit-keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
@keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
@keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes tpswing {
  0% {
    -webkit-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    transform: rotate(20deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes loaderpulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
@keyframes rounded {
  50% {
    transform: rotate(20deg);
  }
}
@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}
.float-bob-y {
  -webkit-animation-name: float-bob-y;
  animation-name: float-bob-y;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}
@keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}
.float-bob-x {
  -webkit-animation-name: float-bob-x;
  animation-name: float-bob-x;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(30px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}
@keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}
@keyframes bounce-x {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.bounce-x {
  -webkit-animation: bounce-x 7s infinite linear;
  animation: bounce-x 7s infinite linear;
}

@keyframes criss-cross-left {
  0% {
    left: -20px;
  }
  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    left: 50%;
    width: 375px;
    height: 375px;
  }
}
@keyframes criss-cross-right {
  0% {
    right: -20px;
  }
  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    right: 50%;
    width: 375px;
    height: 375px;
  }
}
@keyframes rotated2 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes wave {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-25%);
  }
  100% {
    transform: translateX(-50%);
  }
}
/*img-animation**********************/
.img-custom-anim-left {
  animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-left {
  0% {
    transform: translateX(-5%);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-right {
  animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-right {
  0% {
    transform: translateX(5%);
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-left {
  animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-left {
  0% {
    transform: translateX(-5%);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-top {
  animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

@keyframes img-anim-top {
  0% {
    transform: translateY(-5%);
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-bottom {
  animation: img-anim-bottom 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

@keyframes moving {
  0% {
    transform: translatey(0px);
  }
  20% {
    transform: translateX(-50px);
  }
  50% {
    transform: translatey(-40px);
  }
  100% {
    transform: translatey(0px);
  }
}
@keyframes translateX2 {
  0% {
    -webkit-transform: translateX(-30px);
    -moz-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    -o-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  100% {
    -webkit-transform: translatXY(20px);
    -moz-transform: translateX(20px);
    -ms-transform: translateX(20px);
    -o-transform: translateX(20px);
    transform: translateX(20px);
  }
}
@keyframes translateY2 {
  0% {
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -o-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
    transform: translateY(20px);
  }
}
@keyframes arryLeftRight {
  0% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(10px);
  }
}
.animation__arryLeftRight {
  animation: arryLeftRight 2s ease infinite alternate;
}

@keyframes shine {
  from {
    -webkit-mask-position: 150%;
  }
  to {
    -webkit-mask-position: -50%;
  }
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes scrolly {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-60%);
  }
}
@keyframes scrolls {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.animation-infinite {
  animation: ShapeAnim 80s linear infinite;
  height: 30px;
  width: 100%;
  background-repeat: repeat;
  overflow: hidden;
}

@keyframes ShapeAnim {
  0% {
    background-position: top left;
  }
  100% {
    background-position: top left 2000px;
  }
}
.contact-from-section {
  position: relative;
  z-index: 9;
}
.contact-from-section .left-shape {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.contact-from-section .left-shape img {
  width: 100%;
  height: 100%;
}
@media (max-width: 1199px) {
  .contact-from-section .left-shape {
    display: none;
  }
}

.contact-from-wrapper {
  border-top: 1px solid var(--border);
  padding-top: 40px;
  margin-top: 60px;
}
@media (max-width: 1199px) {
  .contact-from-wrapper {
    margin-top: 15px;
  }
}
@media (max-width: 575px) {
  .contact-from-wrapper {
    margin-top: 100px;
  }
}
.contact-from-wrapper .form-clt input, .contact-from-wrapper .form-clt textarea {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid var(--border);
  background: transparent;
  padding: 16px 20px;
  font-weight: 400;
  color: var(--white);
}
.contact-from-wrapper .form-clt input::placeholder, .contact-from-wrapper .form-clt textarea::placeholder {
  color: var(--white);
}
.contact-from-wrapper .theme-btn {
  width: 100%;
}
.contact-from-wrapper .theme-btn::before {
  background-color: var(--white);
}
.contact-from-wrapper .theme-btn::after {
  background-color: var(--white);
}
.contact-from-wrapper .theme-btn:hover {
  color: var(--header);
}

.contact-wrapper .contact-image-item .contact-image {
  margin-left: -254px;
}
@media (max-width: 1199px) {
  .contact-wrapper .contact-image-item .contact-image {
    margin-left: 0;
  }
}
.contact-wrapper .contact-image-item .contact-image img {
  width: 100%;
  height: 100%;
}
.contact-wrapper .contact-image-item .counter-item {
  display: flex;
  align-items: center;
  gap: 60px;
  justify-content: end;
  margin-top: 40px;
}
@media (max-width: 1199px) {
  .contact-wrapper .contact-image-item .counter-item {
    flex-wrap: wrap;
    gap: 30px !important;
    margin-top: 30px;
    justify-content: start;
  }
}
.contact-wrapper .contact-image-item .counter-item .count-wrap {
  display: flex;
  align-items: center;
  gap: 17px;
}
@media (max-width: 1199px) {
  .contact-wrapper .contact-image-item .counter-item .count-wrap {
    flex-wrap: wrap;
  }
}
.contact-wrapper .contact-image-item .counter-item .count-wrap.style-2 {
  border-right: 1px solid var(--header);
  padding-right: 60px;
}
@media (max-width: 1199px) {
  .contact-wrapper .contact-image-item .counter-item .count-wrap.style-2 {
    border-right: none;
    padding-right: 0;
    padding-right: 30px;
  }
}
.contact-wrapper .contact-image-item .counter-item .count-wrap h2 {
  color: var(--theme);
}
.contact-wrapper .contact-image-item .counter-item .count-wrap h3 {
  font-size: 16px;
  font-weight: 600;
}
.contact-wrapper .contact-content {
  margin-left: 30px;
}
@media (max-width: 1199px) {
  .contact-wrapper .contact-content {
    margin-left: 0;
  }
}
.contact-wrapper .contact-content .text {
  margin-top: 30px;
  margin-bottom: 20px;
  color: var(--header);
}
.contact-wrapper .contact-content .form-clt input, .contact-wrapper .contact-content .form-clt textarea {
  width: 100%;
  outline: none;
  border: none;
  border-bottom: 1px solid var(--header);
  background: transparent;
  padding: 16px 0px;
  font-weight: 400;
  color: var(--header);
  padding-bottom: 10px;
}
.contact-wrapper .contact-content .form-clt input::placeholder, .contact-wrapper .contact-content .form-clt textarea::placeholder {
  color: var(--header);
}
.contact-wrapper .contact-content .form-clt textarea {
  padding-bottom: 120px;
  resize: none;
}
.contact-wrapper .contact-content p {
  color: var(--header);
  margin-top: 40px;
  margin-bottom: 10px;
}

.contact-section {
  margin: 0 100px;
}
@media (max-width: 1199px) {
  .contact-section {
    margin: 0 40px;
  }
}
@media (max-width: 991px) {
  .contact-section {
    margin: 0 30px;
  }
}
@media (max-width: 575px) {
  .contact-section {
    margin: 0 15px;
  }
}

.contact-information-item {
  display: flex;
  align-items: center;
  gap: 30px;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: 0px 9px 14px 0px #FBFBFB;
  padding: 40px;
  margin-top: 30px;
}
@media (max-width: 1199px) {
  .contact-information-item {
    padding: 30px;
  }
}
.contact-information-item .icon {
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  background-color: #F4F4F4;
  color: var(--theme);
  transition: all 0.4s ease-in-out;
  font-size: 40px;
}
.contact-information-item .content h3 {
  font-size: 20px;
  font-weight: 600;
}
.contact-information-item .content p {
  max-width: 238px;
  margin-top: 5px;
}
.contact-information-item:hover .icon {
  background-color: var(--theme);
  color: var(--white);
}

.contact-information-section {
  margin-bottom: -10px;
}


.counter-section-2 {
  position: relative;
}
@media (max-width: 1199px) {
  .counter-section-2 {
    overflow: hidden;
  }
}
.counter-section-2 .left-shape {
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 1600px) {
  .counter-section-2 .left-shape {
    display: none;
  }
}

.counter-right-content {
  display: flex;
  align-items: center;
  gap: 70px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
}
@media (max-width: 991px) {
  .counter-right-content {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.counter-right-content .counter-content-1 span {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
  display: inline-block;
  color: var(--header);
  font-family: "Exo", sans-serif;
}
.counter-right-content .counter-content-1 h2 {
  font-size: 64px;
  color: var(--theme);
  font-weight: 700;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .counter-right-content .counter-content-1 h2 {
    font-size: 50px;
    margin-bottom: 10px;
  }
}
@media (max-width: 575px) {
  .counter-right-content .counter-content-1 h2 {
    font-size: 40px;
    margin-bottom: 10px;
  }
}
.counter-right-content .counter-content-1 h2 span {
  font-size: 64px;
  color: var(--theme);
}
.counter-right-content .counter-content-1 p {
  max-width: 344px;
}
.counter-right-content .counter-content-1.style-2 {
  border-left: 1px solid var(--border);
  padding-left: 30px;
}
@media (max-width: 1199px) {
  .counter-right-content .counter-content-1.style-2 {
    border-left: none;
    padding-left: 0;
  }
}

.faq-items {
  text-align: center;
  margin-top: 30px;
}
.faq-items .faq-content .accordion-item {
  border: 0;
  background-color: var(--white);
}
.faq-items .faq-content .accordion-item .accordion-header .accordion-button {
  font-weight: 600;
  color: var(--header);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background-color: var(--white);
  text-transform: capitalize;
  font-size: 24px;
  padding: 30px 0 20px;
}
@media (max-width: 1199px) {
  .faq-items .faq-content .accordion-item .accordion-header .accordion-button {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .faq-items .faq-content .accordion-item .accordion-header .accordion-button {
    font-size: 16px;
  }
}
.faq-items .faq-content .accordion-item .accordion-header .accordion-button::after {
  content: "\f078";
  background: transparent;
  font-family: "Font Awesome 6 Pro";
  font-weight: 400;
  transition: all 0.3s ease-in-out !important;
  color: var(--header);
}
.faq-items .faq-content .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  content: "\f078";
  background: transparent;
  font-family: "Font Awesome 6 Pro";
  font-weight: 400;
  color: var(--header);
}
.faq-items .faq-content .accordion-item .accordion-header .accordion-button.collapsed {
  background-color: var(--white);
  color: var(--header);
  border-bottom: 1px solid rgba(86, 86, 86, 0.3);
}
.faq-items .faq-content .accordion-item .accordion-collapse .accordion-body {
  text-align: left;
  padding-left: 0;
  color: var(--text);
  background-color: transparent;
  padding-top: 0;
  border-bottom: 1px solid rgba(86, 86, 86, 0.3);
  padding-bottom: 20px;
}
@media (max-width: 991px) {
  .faq-items .faq-content .accordion-item .accordion-collapse .accordion-body {
    padding-right: 30px;
  }
}

.faq-section {
  position: relative;
  margin: 0 100px;
}
@media (max-width: 1199px) {
  .faq-section {
    margin: 0 40px;
  }
}
@media (max-width: 991px) {
  .faq-section {
    margin: 0 30px;
  }
}
@media (max-width: 575px) {
  .faq-section {
    margin: 0 15px;
  }
}
.faq-section .left-shape {
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 1199px) {
  .faq-section .left-shape {
    display: none;
  }
}
.faq-section .right-shape {
  position: absolute;
  right: 50px;
  bottom: 40px;
}
@media (max-width: 1199px) {
  .faq-section .right-shape {
    display: none;
  }
}

.feature-card-item {
  position: relative;
}
.feature-card-item .feature-content {
  margin-top: 30px;
}
.feature-card-item .feature-content h3 {
  font-size: 36px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 15px;
}
@media (max-width: 1199px) {
  .feature-card-item .feature-content h3 {
    font-size: 25px;
  }
}
.feature-card-item .feature-content p {
  color: var(--white);
  max-width: 351px;
}

.feature-section {
  position: relative;
}
.feature-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--header);
  top: initial;
  bottom: 60%;
}
@media (max-width: 1199px) {
  .feature-section::before {
    display: none;
  }
}

.work-process-card-items {
  margin-top: 30px;
  text-align: center;
  position: relative;
}
.work-process-card-items .line-shape {
  position: absolute;
  top: 82px;
  left: 300px;
}
@media (max-width: 1199px) {
  .work-process-card-items .line-shape {
    display: none;
  }
}
.work-process-card-items .work-process-icon {
  width: 188px;
  height: 188px;
  background-color: #F8F8F8;
  border-radius: 50%;
  text-align: center;
  line-height: 188px;
  margin: 0 auto;
  position: relative;
}
.work-process-card-items .work-process-icon .number {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme);
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -30px;
}
.work-process-card-items .work-peocess-content {
  margin-top: 30px;
}
.work-process-card-items .work-peocess-content h3 {
  font-size: 20px;
  font-weight: 600;
}
.work-process-card-items .work-peocess-content p {
  max-width: 333px;
  margin: 0 auto;
}

.work-process-section {
  position: relative;
}
.work-process-section .work-process-shape-1 {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 1600px) {
  .work-process-section .work-process-shape-1 {
    display: none;
  }
}
.work-process-section .work-process-shape-2 {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 1600px) {
  .work-process-section .work-process-shape-2 {
    display: none;
  }
}

.skil-wrapper .skill-left-item .skill-image {
  max-width: 532px;
}
@media (max-width: 1199px) {
  .skil-wrapper .skill-left-item .skill-image {
    max-width: initial;
  }
}
.skil-wrapper .skill-left-item .skill-image img {
  width: 100%;
  height: 100%;
}
.skil-wrapper .skill-left-item .progress-wrap {
  margin-top: 40px;
}
@media (max-width: 1199px) {
  .skil-wrapper .skill-left-item .progress-wrap {
    margin-top: 30px;
  }
}
.skil-wrapper .skill-left-item .progress-wrap .pro-items {
  width: 100%;
}
.skil-wrapper .skill-left-item .progress-wrap .pro-items:not(:last-child) {
  margin-bottom: 30px;
}
.skil-wrapper .skill-left-item .progress-wrap .pro-items .pro-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
.skil-wrapper .skill-left-item .progress-wrap .pro-items .pro-head .title {
  font-size: 16px;
  font-weight: 500;
}
.skil-wrapper .skill-left-item .progress-wrap .pro-items .pro-head .point {
  font-size: 16px;
  color: var(--header);
}
.skil-wrapper .skill-left-item .progress-wrap .pro-items .progress {
  background: var(--border);
  justify-content: flex-start;
  border-radius: 0px;
  align-items: center;
  position: relative;
  display: flex;
  height: 12px;
  width: 100%;
}
.skil-wrapper .skill-left-item .progress-wrap .pro-items .progress-value {
  animation: load 3s normal forwards;
  border-radius: 0;
  background: var(--theme);
  height: 4px;
  width: 0;
  position: relative;
}
.skil-wrapper .skill-left-item .progress-wrap .pro-items .progress-value::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--theme);
  top: -4px;
  right: 0;
  left: initial;
  width: 11px;
  height: 11px;
  line-height: 11px;
  border-radius: 50px;
}
.skil-wrapper .skill-left-item .progress-wrap .pro-items .style-two {
  animation: load2 3s normal forwards;
}
.skil-wrapper .skill-left-item .progress-wrap .pro-items .style-three {
  animation: load3 3s normal forwards;
}
@keyframes load {
  0% {
    width: 0;
  }
  100% {
    width: 90%;
  }
}
@keyframes load2 {
  0% {
    width: 0;
  }
  100% {
    width: 70%;
  }
}
@keyframes load3 {
  0% {
    width: 0;
  }
  100% {
    width: 55%;
  }
}
.skil-wrapper .skill-content {
  margin-left: 30px;
}
@media (max-width: 1199px) {
  .skil-wrapper .skill-content {
    margin-left: 0;
  }
}
.skil-wrapper .skill-content .text {
  max-width: 632px;
  margin-top: 25px;
}
.skil-wrapper .skill-content .skill-list-item {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 40px;
  margin-bottom: 40px;
}
@media (max-width: 1199px) {
  .skil-wrapper .skill-content .skill-list-item {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.skil-wrapper .skill-content .skill-list-item ul li {
  color: var(--header);
  font-weight: 500;
}
.skil-wrapper .skill-content .skill-list-item ul li:not(:last-child) {
  margin-bottom: 20px;
}
.skil-wrapper .skill-content .skill-list-item ul li svg {
  margin-right: 5px;
}

.chossse-us-wrapper {
  margin-top: 40px;
}
.chossse-us-wrapper .why-chosse-us-content {
  margin-right: 30px;
}
@media (max-width: 1199px) {
  .chossse-us-wrapper .why-chosse-us-content {
    margin-right: 0;
  }
}
.chossse-us-wrapper .why-chosse-us-content .choose-us-left-image {
  margin-left: 250px;
}
@media (max-width: 1199px) {
  .chossse-us-wrapper .why-chosse-us-content .choose-us-left-image {
    margin-left: 0;
  }
}
.chossse-us-wrapper .why-chosse-us-content .choose-us-left-image img {
  width: 100%;
  height: 100%;
}
.chossse-us-wrapper .why-chosse-us-content .choose-us-main-item {
  margin-top: 50px;
}
@media (max-width: 1199px) {
  .chossse-us-wrapper .why-chosse-us-content .choose-us-main-item {
    margin-top: 30px;
  }
}
.chossse-us-wrapper .why-chosse-us-content .choose-us-main-item .choose-us-item {
  justify-content: space-between;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .chossse-us-wrapper .why-chosse-us-content .choose-us-main-item .choose-us-item {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.chossse-us-wrapper .why-chosse-us-content .choose-us-main-item .choose-us-item .choose-us-icon-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1199px) {
  .chossse-us-wrapper .why-chosse-us-content .choose-us-main-item .choose-us-item .choose-us-icon-item {
    flex-wrap: wrap;
  }
}
.chossse-us-wrapper .why-chosse-us-content .choose-us-main-item .choose-us-item .choose-us-icon-item .icon {
  width: 64px;
  height: 64px;
  line-height: 64px;
  text-align: center;
  border-radius: 100px;
  background-color: #FFF3ED;
  border: 2px solid var(--white);
}
.chossse-us-wrapper .why-chosse-us-content .choose-us-main-item .choose-us-item .choose-us-icon-item .content h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 141%;
}
@media (max-width: 1199px) {
  .chossse-us-wrapper .why-chosse-us-content .choose-us-main-item .choose-us-item .choose-us-icon-item .content h3 {
    font-size: 20px;
  }
}
.chossse-us-wrapper .why-chosse-us-content .choose-us-main-item .choose-us-item .choose-us-icon-item .content p {
  max-width: 267px;
}
.chossse-us-wrapper .choose-us-image-2 {
  height: 558px;
  position: relative;
  z-index: 999;
}
.chossse-us-wrapper .choose-us-image-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 400px;
  content: "";
  background: linear-gradient(to bottom, #fe5b1b, #f7410c);
  z-index: -1;
}
.chossse-us-wrapper .choose-us-image-2 img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.feature-section-1 {
  position: relative;
}
.feature-section-1 .left-shape {
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 1199px) {
  .feature-section-1 .left-shape {
    display: none;
  }
}

.feature-wrapper-1 .feature-left-item {
  margin-right: 60px;
}
@media (max-width: 1199px) {
  .feature-wrapper-1 .feature-left-item {
    margin-right: 0;
  }
}
.feature-wrapper-1 .feature-left-item .text-image {
  margin-top: 120px;
  text-align: right;
}
@media (max-width: 1199px) {
  .feature-wrapper-1 .feature-left-item .text-image {
    text-align: left;
  }
}
@media (max-width: 991px) {
  .feature-wrapper-1 .feature-left-item .text-image {
    margin-top: 30px;
    text-align: left;
  }
}
.feature-wrapper-1 .feature-left-item h3 {
  font-size: 36px;
  color: var(--text);
  font-weight: 500;
  margin-top: 70px;
  margin-left: 100px;
  text-align: end;
}
@media (max-width: 1199px) {
  .feature-wrapper-1 .feature-left-item h3 {
    font-size: 25px;
    text-align: left;
    margin-left: 0;
    margin-bottom: 10px;
    margin-top: 30px;
  }
}
.feature-wrapper-1 .feature-right-item .feature-icon-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  margin-bottom: 40px;
}
@media (max-width: 1199px) {
  .feature-wrapper-1 .feature-right-item .feature-icon-item {
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
  }
}
.feature-wrapper-1 .feature-right-item .feature-icon-item .feature-items {
  display: flex;
  align-items: center;
  gap: 15px;
}
.feature-wrapper-1 .feature-right-item .feature-icon-item .feature-items .feature-icon {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  background: #FFF3ED;
}
.feature-wrapper-1 .feature-right-item .feature-icon-item .feature-items .content h3 {
  font-size: 18px;
}
.feature-wrapper-1 .feature-right-item .feature-image img {
  width: 100%;
  height: 100%;
}

.feature-wrapper-2 .feature-left-item-2 .feature-image {
  margin-bottom: 60px;
}
.feature-wrapper-2 .feature-left-item-2 .feature-image img {
  width: 100%;
  height: 100%;
}
.feature-wrapper-2 .feature-left-item-2 .feature-icon-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 1199px) {
  .feature-wrapper-2 .feature-left-item-2 .feature-icon-item {
    flex-wrap: wrap;
  }
}
.feature-wrapper-2 .feature-left-item-2 .feature-icon-item.style-2 {
  border-bottom: 1px solid var(--border);
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.feature-wrapper-2 .feature-left-item-2 .feature-icon-item .icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  background-color: var(--bg-3);
}
.feature-wrapper-2 .feature-left-item-2 .feature-icon-item .icon img {
  transition: all 0.4s ease-in-out;
  display: inline-block;
}
.feature-wrapper-2 .feature-left-item-2 .feature-icon-item .content p {
  max-width: 380px;
}
.feature-wrapper-2 .feature-left-item-2 .feature-icon-item:hover .icon img {
  transform: scaleX(-1) !important;
}
.feature-wrapper-2 .feature-right-item-2 {
  margin-left: 20px;
}
@media (max-width: 1199px) {
  .feature-wrapper-2 .feature-right-item-2 {
    margin-left: 0;
  }
}
.feature-wrapper-2 .feature-right-item-2 .text {
  max-width: 684px;
  margin-top: 20px;
}
.feature-wrapper-2 .feature-right-item-2 .feature-image-item {
  display: flex;
  gap: 30px;
  margin-top: 60px;
}
@media (max-width: 1199px) {
  .feature-wrapper-2 .feature-right-item-2 .feature-image-item {
    margin-top: 30px;
  }
}
@media (max-width: 991px) {
  .feature-wrapper-2 .feature-right-item-2 .feature-image-item {
    flex-wrap: wrap;
    margin-top: 30px;
    align-items: center;
  }
}
.feature-wrapper-2 .feature-right-item-2 .feature-image-item .feature-image-2 img {
  width: 100%;
  height: 100%;
}
.feature-wrapper-2 .feature-right-item-2 .feature-image-item .feature-count-box {
  border: 1px solid var(--border);
  padding: 40px 30px;
  text-align: center;
}
@media (max-width: 575px) {
  .feature-wrapper-2 .feature-right-item-2 .feature-image-item .feature-count-box {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .feature-wrapper-2 .feature-right-item-2 .feature-image-item .feature-count-box {
    margin: 0 auto;
  }
}
.feature-wrapper-2 .feature-right-item-2 .feature-image-item .feature-count-box .feature-count.style-2 {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.feature-wrapper-2 .feature-right-item-2 .feature-image-item .feature-count-box .feature-count.style-3 {
  margin-bottom: -20px;
}
.feature-wrapper-2 .feature-right-item-2 .feature-image-item .feature-count-box .feature-count h2 {
  color: var(--theme);
}

.gallery-item {
  position: relative;
}
.gallery-item.style-2 {
  margin-top: 30px;
}
.gallery-item .gallery-iamge {
  position: relative;
  z-index: 9;
  overflow: hidden;
}
.gallery-item .gallery-iamge img {
  width: 100%;
  height: 100%;
}
.gallery-item .gallery-iamge .icon {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  color: var(--white);
  z-index: 999;
  font-size: 32px;
}
.gallery-item .gallery-iamge:before, .gallery-item .gallery-iamge:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 50%;
  top: 0;
  left: 0;
  background: rgba(14, 18, 29, 0.5);
  transform: translateX(-100%) rotate(15deg);
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.gallery-item .gallery-iamge:after {
  left: auto;
  right: 0;
  transform: translateX(100%) rotate(-15deg);
}
.gallery-item:hover .gallery-iamge .icon {
  top: 50%;
  opacity: 1;
  visibility: visible;
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  color: var(--white);
  background-color: var(--theme);
}
.gallery-item:hover .gallery-iamge:before, .gallery-item:hover .gallery-iamge:after {
  transform: none;
  opacity: 1;
  visibility: visible;
}

.footer-widget-wrapper {
  padding: 120px 0;
}
@media (max-width: 1199px) {
  .footer-widget-wrapper {
    padding: 70px 0;
  }
}
@media (max-width: 991px) {
  .footer-widget-wrapper {
    padding: 50px 0;
  }
}
.footer-widget-wrapper.style-2 {
  padding: 100px 0 80px;
}
@media (max-width: 991px) {
  .footer-widget-wrapper.style-2 {
    padding: 100px 0 70px;
  }
}
.footer-widget-wrapper.style-2 .single-footer-widget .wid-title h3 {
  color: var(--header);
  font-size: 24px;
  font-weight: 600;
  line-height: 141%;
}
.footer-widget-wrapper.style-2 .single-footer-widget .footer-content p {
  color: var(--text);
}
.footer-widget-wrapper.style-2 .single-footer-widget .social-icon {
  gap: 15px;
  margin-top: 40px;
}
.footer-widget-wrapper.style-2 .single-footer-widget .social-icon a {
  display: inline-block;
  width: 46px;
  height: 46px;
  line-height: 46px;
  text-align: center;
  background: #3D4250;
  color: var(--white);
  transition: all 0.4s ease-in-out;
}
.footer-widget-wrapper.style-2 .single-footer-widget .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
}
.footer-widget-wrapper.style-2 .single-footer-widget .list-items li i {
  color: var(--text);
}
.footer-widget-wrapper.style-2 .single-footer-widget .list-items li a {
  color: var(--text);
}
.footer-widget-wrapper.style-2 .single-footer-widget .list-items li:hover i {
  color: var(--theme);
}
.footer-widget-wrapper.style-2 .single-footer-widget .recent-post-area .recent-items .recent-content h5 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
  color: var(--header);
}
.footer-widget-wrapper.style-2 .single-footer-widget .recent-post-area .recent-items .recent-content h5 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(#b20e20
,#b20e20
);
}
.footer-widget-wrapper.style-2 .single-footer-widget .recent-post-area .recent-items .recent-content ul li {
  color: var(--header);
}
.footer-widget-wrapper .single-footer-widget {
  margin-top: 30px;
  position: relative;
}
.footer-widget-wrapper .single-footer-widget .wid-title {
  margin-bottom: 30px;
}
.footer-widget-wrapper .single-footer-widget .wid-title h4 {
  color: var(--white);
  position: relative;
  padding-bottom: 15px;
}
.footer-widget-wrapper .single-footer-widget .wid-title h4::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 55px;
  height: 2px;
  background-color: var(--theme);
}
.footer-widget-wrapper .single-footer-widget .wid-title h4::after {
  position: absolute;
  bottom: 0;
  left: 60px;
  content: "";
  width: 25px;
  height: 2px;
  background-color: var(--theme);
}
.footer-widget-wrapper .single-footer-widget .footer-content p {
  color: var(--white);
  max-width: 341px;
}
.footer-widget-wrapper .single-footer-widget .footer-contact-item {
  margin-top: 30px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
.footer-widget-wrapper .single-footer-widget .footer-contact-item .contact-item span {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 5px;
  display: inline-block;
}
.footer-widget-wrapper .single-footer-widget .footer-contact-item .contact-item .list li {
  color: #B2B2B2;
}
.footer-widget-wrapper .single-footer-widget .footer-contact-item .contact-item .list li i {
  width: 26px;
  height: 26px;
  text-align: center;
  line-height: 26px;
  background-color: var(--theme);
  margin-right: 10px;
  color: var(--white);
  font-size: 12px;
}
.footer-widget-wrapper .single-footer-widget .footer-contact-item .contact-item .list li a {
  color: #B2B2B2;
}
.footer-widget-wrapper .single-footer-widget .list-items li {
  transition: all 0.4s ease-in-out;
}
.footer-widget-wrapper .single-footer-widget .list-items li i {
  margin-right: 10px;
  color: #B2B2B2;
}
.footer-widget-wrapper .single-footer-widget .list-items li a {
  color: #B2B2B2;
}
.footer-widget-wrapper .single-footer-widget .list-items li:not(:last-child) {
  margin-bottom: 15px;
}
.footer-widget-wrapper .single-footer-widget .list-items li:hover {
  margin-left: 5px;
}
.footer-widget-wrapper .single-footer-widget .list-items li:hover a {
  color: var(--theme);
}
.footer-widget-wrapper .single-footer-widget .recent-post-area .recent-items {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .footer-widget-wrapper .single-footer-widget .recent-post-area .recent-items {
    flex-wrap: wrap;
  }
}
.footer-widget-wrapper .single-footer-widget .recent-post-area .recent-items .recent-content h4 {
  font-size: 18px;
  margin-bottom: 5px;
}
.footer-widget-wrapper .single-footer-widget .recent-post-area .recent-items .recent-content h4 a {
  color: var(--header);
}
.footer-widget-wrapper .single-footer-widget .recent-post-area .recent-items .recent-content h4 a:hover {
  color: var(--theme);
}
.footer-widget-wrapper .single-footer-widget .recent-post-area .recent-items .recent-content ul li {
  font-size: 14px;
  font-weight: 400;
  color: var(--white);
}
.footer-widget-wrapper .single-footer-widget .recent-post-area .recent-items .recent-content ul li i {
  color: var(--theme);
  margin-right: 5px;
}

.footer-section {
  position: relative;
}
.footer-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--header);
  opacity: 0.94;
}

.footer-bottom {
  background: #262A36;
  padding: 20px 0;
  position: relative;
}
.footer-bottom .footer-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .footer-bottom .footer-wrapper {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.footer-bottom .footer-wrapper p {
  color: var(--white);
}
.footer-bottom .footer-wrapper p span {
  color: var(--theme);
}
.footer-bottom .footer-wrapper .social-icon {
  gap: 15px;
}
.footer-bottom .footer-wrapper .social-icon a {
  display: inline-block;
  width: 46px;
  height: 46px;
  line-height: 46px;
  text-align: center;
  background: #3D4250;
  color: var(--white);
  transition: all 0.4s ease-in-out;
}
.footer-bottom .footer-wrapper .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
}

.footer-section-2 {
  position: relative;
  z-index: 9;
}
.footer-section-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(14, 18, 29, 0.85);
  z-index: -1;
}
.footer-section-2::after {
  position: absolute;
  content: "";
  width: 93%;
  left: 65px;
  top: 34%;
  bottom: 40px;
  background-color: var(--white);
  z-index: -1;
}
@media (max-width: 1199px) {
  .footer-section-2::after {
    top: 260px;
    width: 100%;
    left: 0;
    bottom: 0;
  }
}
@media (max-width: 991px) {
  .footer-section-2::after {
    top: 245px;
  }
}
@media (max-width: 767px) {
  .footer-section-2::after {
    top: 220px;
  }
}
.footer-section-2 .footer-text {
  text-align: center;
  margin-top: 120px;
}
@media (max-width: 1199px) {
  .footer-section-2 .footer-text {
    margin-top: 100px;
  }
}
@media (max-width: 991px) {
  .footer-section-2 .footer-text {
    margin-top: 80px;
  }
}
.footer-section-2 .footer-text span {
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  display: inline-block;
  font-family: "Exo", sans-serif;
}
.footer-section-2 .footer-text h2 {
  font-size: 74px;
  font-weight: 500;
  border-bottom: 2px solid var(--white);
  padding-bottom: 10px;
  display: inline-block;
}
.footer-section-2 .footer-text h2 a {
  color: var(--white);
}
@media (max-width: 1199px) {
  .footer-section-2 .footer-text h2 {
    font-size: 60px;
  }
}
@media (max-width: 991px) {
  .footer-section-2 .footer-text h2 {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .footer-section-2 .footer-text h2 {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .footer-section-2 .footer-text h2 {
    font-size: 30px;
  }
}
.footer-section-2 .text-image {
  position: absolute;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.footer-section-2 .text-image img {
  width: 100%;
  height: 100%;
}
@media (max-width: 1199px) {
  .footer-section-2 .text-image {
    display: none;
  }
}

.footer-bottom-2 {
  padding: 2px;
  border-top: 1px solid var(--border);
}
@media (max-width: 1199px) {
  .footer-bottom-2 {
    padding: 30px 0;
  }
}
.footer-bottom-2 p {
  text-align: center;
}

.header-top-section {
  position: relative;
  z-index: 9;
  background-color: var(--header);
}
@media (max-width: 991px) {
  .header-top-section {
    display: none;
  }
}
.header-top-section .container-fluid {
  padding: 0 100px;
}
@media (max-width: 1600px) {
  .header-top-section .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 1199px) {
  .header-top-section .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .header-top-section .container-fluid {
    padding: 0 20px;
  }
}

.header-top-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
.header-top-wrapper .contact-list {
  display: flex;
  align-items: center;
  gap: 40px;
}
.header-top-wrapper .contact-list li {
  color: var(--white);
}
.header-top-wrapper .contact-list li i {
  margin-right: 5px;
  color: var(--white);
}
.header-top-wrapper .contact-list li a {
  color: var(--white);
}
.header-top-wrapper .social-icon {
  gap: 20px;
}
.header-top-wrapper .social-icon span {
  color: var(--white);
}
.header-top-wrapper .social-icon a {
  color: var(--white);
}
.header-top-wrapper .social-icon a:hover {
  color: var(--theme);
}

.header-section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: transparent;
}

@media (max-width: 1199px) {
  .menu-thumb {
    display: none !important;
  }
}


.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.main-menu {
    position: relative;
    z-index: 9999;
}
.header-main .main-menu ul {
  margin-bottom: 0;
}
.header-main .main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  margin-inline-end: 40px;
}
.header-main .main-menu ul li:last-child {
  margin-inline-end: 0;
}
.header-main .main-menu ul li a {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  color: var(--header);
  padding: 20px 0;
  text-align: left;
  position: relative;
  text-transform: uppercase;
  transition: all 0.4s ease-in-out;
}
.header-main .main-menu ul li a i {
  margin-left: 4px;
}
.header-main .main-menu ul li a:hover {
  color: var(--theme) !important;
}
.header-main .main-menu ul li .submenu {
  position: absolute;
  top: 100%;
  inset-inline-start: 0;
  min-width: 240px;
  background: var(--white);
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transform-origin: top center;
  color: var(--header);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  transform: translateY(10px);
  transition: all 0.4s ease-in-out;
}
.header-main .main-menu ul li .submenu li {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}
.header-main .main-menu ul li .submenu li a {
  position: relative;
  z-index: 11;
  font-size: 16px;
  font-weight: 700;
  color: var(--header);
  padding: 0 25px;
  padding-bottom: 11px;
  padding-top: 11px;
  width: 100%;
  border-bottom: 1px solid #eeeeee;
}
.header-main .main-menu ul li .submenu li:last-child a {
  border: none;
}
.header-main .main-menu ul li .submenu li .submenu {
  inset-inline-start: 100%;
  top: 0;
  visibility: hidden;
  opacity: 0;
}
.header-main .main-menu ul li .submenu li:hover > a {
  background: var(--theme);
  color: var(--white) !important;
}
.header-main .main-menu ul li .submenu li:hover > a::after {
  color: var(--theme);
}
.header-main .main-menu ul li .submenu li:hover > .submenu {
  -webkit-transform: translateY(1);
  -moz-transform: translateY(1);
  -ms-transform: translateY(1);
  -o-transform: translateY(1);
  transform: translateY(1);
  visibility: visible;
  opacity: 1;
}
.header-main .main-menu ul li .submenu li.has-dropdown > a::after {
  position: absolute;
  top: 50%;
  inset-inline-end: 25px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  color: var(--theme);
}
.header-main .main-menu ul li .has-homemenu {
  width: 800px;
  padding: 30px 30px 10px 30px;
  opacity: 0;
  left: -250px;
  visibility: hidden;
  padding: 30px 30px 10px 30px;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .header-main .main-menu ul li .has-homemenu .homemenu-items {
    flex-wrap: wrap;
  }
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu {
  position: relative;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb {
  position: relative;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  gap: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  margin-top: 20px;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
  padding: 14px 20px;
  color: var(--white) !important;
  width: initial;
  font-size: 14px;
  text-align: center;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  color: var(--white) !important;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb::before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 19, 19, 0)), to(#5e5ef6));
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #252527 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb img {
  width: 100%;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
  text-align: center;
  margin: 15px auto;
  display: inline-block;
  font-size: 16px;
}
.header-main .main-menu ul li:hover > a {
  color: var(--theme);
}
.header-main .main-menu ul li:hover > a::after {
  color: var(--theme);
}
.header-main .main-menu ul li:hover > .submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}
.header-main .sidebar__toggle {
  cursor: pointer;
  color: var(--header);
  font-size: 20px;
}

.header-1 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
}
.header-1 .container-fluid {
  padding: 0 100px;
}
@media (max-width: 1600px) {
  .header-1 .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 1199px) {
  .header-1 .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .header-1 .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 575px) {
  .header-1 .header-main .header-left .header-logo img {
    width: 150px;
  }
}
.header-1 .header-main .header-left .header-logo-2 {
  display: none;
}
@media (max-width: 575px) {
  .header-1 .header-main .header-left .header-logo-2 img {
    width: 150px;
  }
}
.header-1 .header-main ul li a {
  color: var(--white);
}
.header-1 .header-main .header-right {
  gap: 30px;
}
@media (max-width: 1199px) {
  .header-1 .header-main .header-right {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .header-1 .header-main .header-right {
    gap: 10px;
  }
}
@media (max-width: 1199px) {
  .header-1 .header-main .header-right .header-button {
    display: none;
  }
}
.header-1 .header-main .header-right .header__hamburger .sidebar__toggle {
  color: var(--white);
}

.header-2.header-3 {
  border-bottom: 1px solid var(--border);
}

.sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.9s;
  background-color: var(--white);
  box-shadow: var(--box-shadow);
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}
.sticky.header-1 .header-main .header-left .header-logo {
  display: none;
}
.sticky.header-1 .header-main .header-left .header-logo-2 {
  display: block;
}
@media (max-width: 575px) {
  .sticky.header-1 .header-main .header-left .header-logo-2 img {
    width: 150px;
  }
}
.sticky.header-1 .header-main ul li a {
  color: var(--header);
}
.sticky.header-1 .header-main .header__hamburger .sidebar__toggle {
  color: var(--header);
}
.sticky.header-2 .header-main {
  padding: 15px 0;
  border-radius: 0;
}
.sticky.header-5 .header-main .main-menu ul li a {
  color: var(--header);
}
.sticky.header-5 .header-main .header-right .search-icon {
  border: 1px solid var(--header);
  color: var(--header);
}



.breadcrumb-wrapper {
  position: relative;
      background-position: center center;
    background-repeat: no-repeat;
    width:100%;
}
.breadcrumb-wrapper::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, rgba(14, 18, 29, 0.9) 7.24%, rgba(14, 18, 29, 0.8) 19.95%, rgba(14, 18, 29, 0.68) 35.78%, rgba(14, 18, 29, 0) 67.24%);
    
}
.breadcrumb-wrapper .page-heading {
  padding: 180px 0 180px;
  position: relative;
}
@media (max-width: 1199px) {
  .breadcrumb-wrapper .page-heading {
    padding: 100px 0 100px;
    text-align: center;
  }
}
@media (max-width: 991px) {
  .breadcrumb-wrapper .page-heading {
    padding: 80px 0 80px;
  }
}
.breadcrumb-wrapper .page-heading h2 {
  color: var(--white);
  font-size: 54px;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .breadcrumb-wrapper .page-heading h2 {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .breadcrumb-wrapper .page-heading h2 {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading h2 {
    font-size: 40px;
  }
}
.breadcrumb-wrapper .page-heading .breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 1199px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-list {
    justify-content: center;
  }
}
.breadcrumb-wrapper .page-heading .breadcrumb-list li {
  color: var(--white);
  font-weight: 600;
  font-size: 18px;
}
.breadcrumb-wrapper .page-heading .breadcrumb-list li i {
  color: var(--white);
}
.breadcrumb-wrapper .page-heading .breadcrumb-list li a {
  color: var(--theme);
}

.error-items {
  text-align: center;
}
.error-items .error-image {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .error-items .error-image {
    margin-bottom: 30px;
  }
}
.error-items .error-image img {
  width: 100%;
  height: 100%;
}
.error-items h2 {
  font-size: 64px;
  margin-bottom: 10px;
}
@media (max-width: 1199px) {
  .error-items h2 {
    font-size: 50px;
  }
}
@media (max-width: 991px) {
  .error-items h2 {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .error-items h2 {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .error-items h2 {
    font-size: 30px;
  }
}
.error-items h2 span {
  color: var(--theme);
}
.error-items p {
  margin-bottom: 40px;
}
@media (max-width: 1199px) {
  .error-items p {
    margin-bottom: 30px;
  }
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--theme);
  border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--theme);
  border-radius: 10px;
}

.fix {
  overflow: hidden;
}

.ralt {
  position: relative;
}

.ml-50 {
  margin-left: 50px;
}
@media (max-width: 1199px) {
  .ml-50 {
    margin-left: 0;
  }
}

.ripple {
  position: relative;
}
.ripple::before, .ripple::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 60px;
  height: 60px;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  -webkit-animation: rippleOne 3s infinite;
  animation: rippleOne 3s infinite;
}
.ripple::before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}
.ripple::after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

@media (max-width: 767px) {
  br {
    display: none;
  }
}

/* background */
.bg-cover {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;
}

.sticky-style {
  position: sticky !important;
  top: 100px;
}

.gt-slide-transtion {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

.gt-brand-slide-element {
  width: auto;
  display: inline-block;
}

.swiper-dot {
  text-align: center;
  margin-top: 50px;
  z-index: 1;
}
.swiper-dot .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  transition: 0.6s;
  background: var(--header);
  opacity: 1;
  border-radius: 10px;
}
.swiper-dot .swiper-pagination-bullet:not(:last-child) {
  margin-right: 20px;
}
.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: rgb(40, 44, 50);
  transition: 0.6s;
  position: relative;
}
.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  position: absolute;
  width: 21px;
  height: 21px;
  line-height: 21px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid rgb(0, 56, 101);
  content: "";
}
.swiper-dot.style-2 .swiper-pagination-bullet {
  background: var(--theme);
}
.swiper-dot.style-2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme);
}
.swiper-dot.style-2 .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  border: 2px solid var(--header);
}

.page-nav-wrap {
  margin-top: 60px;
}
@media (max-width: 1199px) {
  .page-nav-wrap {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .page-nav-wrap.style-2 {
    margin-top: 0px;
  }
}
.page-nav-wrap ul li {
  display: inline-block;
}
.page-nav-wrap ul li.active .page-numbers {
  background-color: var(--theme);
  color: var(--white);
}
.page-nav-wrap ul li .page-numbers.current {
  background-color: var(--theme);
  color: var(--white);
}
.page-nav-wrap ul li .page-numbers {
  display: inline-block;
  width: 56px;
  height: 56px;
  text-align: center;
  line-height: 56px;
  border-radius: 0;
  background: #EEE;
  color: var(--black);
  font-weight: 400;
  transition: all 0.3s ease-in-out;
  margin: 0 2px;
}
@media (max-width: 767px) {
  .page-nav-wrap ul li .page-numbers {
    margin-top: 10px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
  }
}
.page-nav-wrap ul li .page-numbers i {
  margin-top: 2px;
}
.page-nav-wrap ul li .page-numbers:hover {
  background-color: var(--theme);
  color: var(--white);
}

.array-buttons {
  display: grid;
  gap: 60px;
}
@media (max-width: 1199px) {
  .array-buttons {
    flex-wrap: wrap;
  }
}
.array-buttons .array-prev {
  width: 56px;
  height: 56px;
  line-height: 56px;
  border-radius: 0;
  text-align: center;
  background-color: var(--header);
  color: var(--white);
  transition: all 0.4s ease-in-out;
}
@media (max-width: 575px) {
  .array-buttons .array-prev {
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
}
.array-buttons .array-prev:hover {
  background-color: var(--theme);
  color: var(--white);
}
.array-buttons .array-next {
  width: 56px;
  height: 56px;
  line-height: 56px;
  border-radius: 0;
  text-align: center;
  background-color: var(--theme);
  color: var(--white);
  transition: all 0.4s ease-in-out;
}
@media (max-width: 575px) {
  .array-buttons .array-next {
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
}
.array-buttons .array-next:hover {
  background-color: var(--header);
  color: var(--white);
}

.swiper-dot-3 {
  margin-top: 50px;
  z-index: 1;
}
.swiper-dot-3 .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  transition: 0.6s;
  background: var(--header);
  opacity: 1;
  border-radius: 10px;
}
.swiper-dot-3 .swiper-pagination-bullet:not(:last-child) {
  margin-right: 20px;
}
.swiper-dot-3 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: rgb(40, 44, 50);
  transition: 0.6s;
  position: relative;
}
.swiper-dot-3 .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  position: absolute;
  width: 14px;
  height: 14px;
  line-height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: var(--theme);
  content: "";
}

.swiper-dot2 {
  text-align: center;
}
.swiper-dot2 .swiper-pagination-bullet {
  width: 36px;
  height: 3px;
  transition: 0.6s;
  background-color: var(--white);
  opacity: 1;
  border-radius: 0;
  position: relative;
}
.swiper-dot2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme);
  transition: 0.6s;
  position: relative;
  width: 36px;
  border-radius: 0;
}

.sticky-style {
  position: sticky !important;
  top: 100px;
}

.hero-1 {
  position: relative;
  padding: 430px 0 130px;
}
@media (max-width: 1199px) {
  .hero-1 {
    padding: 180px 0 100px;
  }
}
@media (max-width: 991px) {
  .hero-1 {
    padding: 150px 0 80px;
  }
}
.hero-1 .container-fluid {
  padding: 0 100px;
}
@media (max-width: 1199px) {
  .hero-1 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 991px) {
  .hero-1 .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 767px) {
  .hero-1 .container-fluid {
    padding: 0 30px;
  }
}
.hero-1::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, rgba(4, 2, 0, 0) 0%, rgba(4, 2, 0, 0.74) 80.87%);
}
.hero-1 .hero-wrapper {
  display: flex;
  align-items: end;
  justify-content: space-between;
}
@media (max-width: 1600px) {
  .hero-1 .hero-wrapper {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.hero-1 .hero-wrapper .left-content {
  position: relative;
}
.hero-1 .hero-wrapper .left-content h1 {
  color: var(--white);
  font-size: 96px;
  font-weight: 700;
}
@media (max-width: 1199px) {
  .hero-1 .hero-wrapper .left-content h1 {
    font-size: 55px;
  }
}
@media (max-width: 991px) {
  .hero-1 .hero-wrapper .left-content h1 {
    font-size: 45px;
  }
}
@media (max-width: 767px) {
  .hero-1 .hero-wrapper .left-content h1 {
    font-size: 35px;
  }
}
@media (max-width: 575px) {
  .hero-1 .hero-wrapper .left-content h1 {
    font-size: 30px;
  }
}
.hero-1 .hero-wrapper .right-content {
  position: relative;
}
.hero-1 .hero-wrapper .right-content p {
  color: var(--white);
}
.hero-1 .hero-wrapper .right-content .hero-us-btn {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .hero-1 .hero-wrapper .right-content .hero-us-btn {
    flex-wrap: wrap;
  }
}
.hero-1 .hero-wrapper .right-content .hero-us-btn .client-info {
  display: flex;
  align-items: center;
  gap: 15px;
}
.hero-1 .hero-wrapper .right-content .hero-us-btn .client-info .text .title {
  margin-bottom: 5px;
  color: var(--white);
}
.hero-1 .hero-wrapper .right-content .hero-us-btn .client-info .text span {
  font-weight: 700;
  color: var(--white);
  font-size: 16px;
}
@media (max-width: 767px) {
  .hero-1 .hero-wrapper .right-content .hero-us-btn .client-info .text span {
    text-align: left;
  }
}

.hero-2 {
  position: relative;
  padding: 0px 0 0px;
  z-index: 9;
}
@media (max-width: 1600px) {
  .hero-2 {
    overflow: hidden;
  }
}
@media (max-width: 1199px) {
  .hero-2 {
    padding: 80px 0 0;
  }
}
.hero-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--bg-3);
  z-index: -1;
  top: 21px;
}
@media (max-width: 1199px) {
  .hero-2::before {
    top: 0;
  }
}
.hero-2 .left-shape {
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 1199px) {
  .hero-2 .left-shape {
    display: none;
  }
}
.hero-2 .container-fluid {
  padding: 0 100px;
}
@media (max-width: 1600px) {
  .hero-2 .container-fluid {
    padding: 0 60px;
  }
}
@media (max-width: 1199px) {
  .hero-2 .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 991px) {
  .hero-2 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 767px) {
  .hero-2 .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 575px) {
  .hero-2 .container-fluid {
    padding: 0 30px;
  }
}
.hero-2 .hero-content-box {
  background-color: var(--header);
  padding: 80px;
  margin-right: -266px;
  position: relative;
  z-index: 9;
  clip-path: polygon(92% 0, 100% 12%, 100% 100%, 50% 100%, 0 100%, 0 0);
}
@media (max-width: 1600px) {
  .hero-2 .hero-content-box {
    padding: 50px;
    margin-right: -230px;
  }
}
@media (max-width: 1199px) {
  .hero-2 .hero-content-box {
    padding: 30px;
    margin-right: 0;
  }
}
@media (max-width: 991px) {
  .hero-2 .hero-content-box {
    padding: 50px;
  }
}
@media (max-width: 767px) {
  .hero-2 .hero-content-box {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .hero-2 .hero-content-box {
    padding: 30px;
  }
}
.hero-2 .hero-content-box h2 {
  font-size: 185px;
  font-weight: 800;
  line-height: 41%;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--white);
  color: transparent;
  position: absolute;
  top: 85px;
  left: 60px;
  opacity: 0.05;
}
@media (max-width: 1600px) {
  .hero-2 .hero-content-box h2 {
    font-size: 150px;
  }
}
@media (max-width: 1199px) {
  .hero-2 .hero-content-box h2 {
    display: none;
  }
}
.hero-2 .hero-content-box .hero-list {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .hero-2 .hero-content-box .hero-list {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.hero-2 .hero-content-box .hero-list h3 {
  color: var(--theme);
  font-size: 20px;
  font-weight: 600;
}
.hero-2 .hero-content-box h1 {
  color: var(--white);
  margin-bottom: 10px;
  font-size: 64px;
  font-weight: 700;
}
@media (max-width: 1600px) {
  .hero-2 .hero-content-box h1 {
    font-size: 45px;
  }
}
@media (max-width: 1399px) {
  .hero-2 .hero-content-box h1 {
    font-size: 40px;
  }
}
@media (max-width: 1199px) {
  .hero-2 .hero-content-box h1 {
    font-size: 35px;
  }
}
@media (max-width: 991px) {
  .hero-2 .hero-content-box h1 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .hero-2 .hero-content-box h1 {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .hero-2 .hero-content-box h1 {
    font-size: 25px;
  }
}
.hero-2 .hero-content-box h1 span {
  color: var(--theme);
}
.hero-2 .hero-content-box p {
  max-width: 607px;
  color: var(--white);
}
.hero-2 .hero-content-box .hero-button {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}
@media (max-width: 1199px) {
  .hero-2 .hero-content-box .hero-button {
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
  }
}
.hero-2 .hero-content-box .hero-button .theme-btn::before {
  background-color: var(--white);
}
.hero-2 .hero-content-box .hero-button .theme-btn::after {
  background-color: var(--white);
}
.hero-2 .hero-content-box .hero-button .theme-btn:hover {
  color: var(--theme);
}
.hero-2 .hero-image {
  margin-right: -100px;
  position: relative;
}
@media (max-width: 1199px) {
  .hero-2 .hero-image {
    margin-right: 0;
  }
}
.hero-2 .hero-image img {
  width: 100%;
  height: 100%;
}
.hero-2 .hero-image .hero-info-item {
  display: flex;
  align-items: center;
  gap: 160px;
  background-color: var(--bg-3);
  padding: 60px;
  position: absolute;
  right: 0;
  bottom: -80px;
}
@media (max-width: 1600px) {
  .hero-2 .hero-image .hero-info-item {
    padding: 50px;
    gap: 90px;
    bottom: 0;
    z-index: 9;
  }
}
@media (max-width: 1199px) {
  .hero-2 .hero-image .hero-info-item {
    bottom: 0;
    position: static;
    padding: 20px 0;
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .hero-2 .hero-image .hero-info-item {
    padding: 50px 0;
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .hero-2 .hero-image .hero-info-item {
    padding: 40px 0;
  }
}
@media (max-width: 575px) {
  .hero-2 .hero-image .hero-info-item {
    padding: 30px 0;
  }
}
.hero-2 .hero-image .hero-info-item:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--border);
  width: 1px;
  left: 40%;
}
@media (max-width: 1199px) {
  .hero-2 .hero-image .hero-info-item:before {
    display: none;
  }
}
.hero-2 .hero-image .hero-info-item::after {
  position: absolute;
  content: "";
  background-color: var(--border);
  width: 1px;
  right: 30%;
  top: 0;
  bottom: 0;
}
@media (max-width: 1199px) {
  .hero-2 .hero-image .hero-info-item::after {
    display: none;
  }
}
.hero-2 .hero-image .hero-info-item .shape {
  position: absolute;
  left: 20px;
  top: 20px;
}
@media (max-width: 1199px) {
  .hero-2 .hero-image .hero-info-item .shape {
    display: none;
  }
}
.hero-2 .hero-image .hero-info-item .client-info .text {
  font-weight: 400;
  font-size: 16px;
  line-height: 141%;
}
.hero-2 .hero-image .hero-info-item .client-info .client-image {
  margin-top: 10px;
  margin-bottom: 10px;
}
.hero-2 .hero-image .hero-info-item .client-info .client-image img {
  width: initial;
  height: initial;
}
.hero-2 .hero-image .hero-info-item .client-info h3 {
  font-size: 16px;
  font-weight: 600;
}
.hero-2 .hero-image .hero-info-item .video {
  position: relative;
  width: 150px;
  height: 150px;
  line-height: 150px;
  text-align: center;
  border-radius: 100%;
  background-color: var(--theme);
  z-index: 999;
}
@media (max-width: 767px) {
  .hero-2 .hero-image .hero-info-item .video {
    width: 100px;
    height: 100px;
    line-height: 100px;
    font-size: 18px;
  }
}
.hero-2 .hero-image .hero-info-item .video .video-btn {
  text-align: center;
  color: var(--white);
  display: inline-block;
  text-align: center;
  font-size: 24px;
  z-index: 999;
  position: absolute;
  z-index: 99;
  width: 80px;
  height: 80px;
  line-height: 80px;
  background-color: transparent;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid var(--white);
  border-radius: 100%;
}
@media (max-width: 1199px) {
  .hero-2 .hero-image .hero-info-item .video .video-btn {
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
}
.hero-2 .hero-image .hero-info-item .video .video-btn i {
  z-index: 99;
  position: relative;
}
.hero-2 .hero-image .hero-info-item .video .circle-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero-2 .hero-image .hero-info-item .video .circle-image img {
  animation: cir36 10s linear infinite;
  width: initial;
  height: initial;
}
@media (max-width: 575px) {
  .hero-2 .hero-image .hero-info-item .video .circle-image img {
    width: 80px;
  }
}
.hero-2 .hero-image .hero-info-item .right-content h4 {
  font-size: 20px;
  font-weight: 600;
}
.hero-2 .hero-image .hero-info-item .right-content h5 {
  color: var(--theme);
  margin-bottom: 5px;
  margin-top: 5px;
  font-size: 48px;
}
@media (max-width: 1199px) {
  .hero-2 .hero-image .hero-info-item .right-content h5 {
    font-size: 35px;
  }
}
@media (max-width: 991px) {
  .hero-2 .hero-image .hero-info-item .right-content h5 {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .hero-2 .hero-image .hero-info-item .right-content h5 {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .hero-2 .hero-image .hero-info-item .right-content h5 {
    font-size: 30px;
  }
}
@media (max-width: 470px) {
  .hero-2 .hero-image .hero-info-item .right-content h5 {
    font-size: 25px;
  }
}

.hero-3 {
  padding: 120px 0 0;
  position: relative;
}
@media (max-width: 1199px) {
  .hero-3 {
    padding: 100px 0;
  }
}
@media (max-width: 991px) {
  .hero-3 {
    padding: 80px 0;
  }
}
.hero-3 .right-shape {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
}
.hero-3 .hero-left-content {
  position: relative;
}
.hero-3 .hero-left-content .text {
  font-size: 20px;
  font-weight: 600;
  color: var(--theme);
  text-transform: uppercase;
  position: relative;
  padding-right: 95px;
  display: inline-block;
  margin-bottom: 15px;
}
.hero-3 .hero-left-content .text::before {
  position: absolute;
  content: "";
  left: initial;
  right: 0;
  top: 10px;
  background-color: var(--theme);
  height: 2px;
  width: 80px;
}
.hero-3 .hero-left-content h1 {
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.hero-3 .hero-left-content h1 span {
  color: var(--theme);
  font-size: 110px;
  font-weight: 500;
}
@media (max-width: 1600px) {
  .hero-3 .hero-left-content h1 span {
    font-size: 70px;
  }
}
@media (max-width: 1199px) {
  .hero-3 .hero-left-content h1 span {
    font-size: 60px;
  }
}
@media (max-width: 991px) {
  .hero-3 .hero-left-content h1 span {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .hero-3 .hero-left-content h1 span {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .hero-3 .hero-left-content h1 span {
    font-size: 30px;
  }
}
.hero-3 .hero-left-content h2 {
  font-size: 24px;
  font-weight: 600;
  line-height: 141%;
}
@media (max-width: 1399px) {
  .hero-3 .hero-left-content h2 {
    font-size: 20px;
  }
}
.hero-3 .hero-left-content h6 {
  font-weight: 500;
}
.hero-3 .hero-right-content {
  margin-right: -100px;
  position: relative;
}
@media (max-width: 1199px) {
  .hero-3 .hero-right-content {
    margin-right: 0;
  }
}
.hero-3 .hero-right-content .hero-count {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 1199px) {
  .hero-3 .hero-right-content .hero-count {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.hero-3 .hero-right-content .hero-count h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 141%;
}
@media (max-width: 1199px) {
  .hero-3 .hero-right-content .hero-count h3 {
    font-size: 20px;
  }
}
.hero-3 .hero-right-content .hero-count h4 {
  font-size: 16px;
  font-weight: 400;
  color: var(--header);
}
.hero-3 .hero-right-content p {
  margin-top: 60px;
}
@media (max-width: 1199px) {
  .hero-3 .hero-right-content p {
    margin-top: 30px;
  }
}
.hero-3 .hero-right-content p span {
  font-weight: 600;
}
.hero-3 .hero-image {
  margin-right: -30%;
  position: relative;
  margin-top: 20px;
  z-index: 9;
}
@media (max-width: 1199px) {
  .hero-3 .hero-image {
    margin-right: 0;
  }
}
.hero-3 .hero-image img {
  width: 100%;
  height: 100%;
}
.hero-3 .hero-image .video-btn {
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  background-color: var(--header);
  color: var(--white);
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 767px) {
  .hero-3 .hero-image .video-btn {
    width: 70px;
    height: 70px;
    line-height: 70px;
  }
}
@media (max-width: 1199px) {
  .hero-3 .hero-image .video-btn {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

.mean-container a.meanmenu-reveal {
  display: none;
}

.mean-container .mean-nav {
  background: none;
  margin-top: 0;
}

.mean-container .mean-bar {
  padding: 0;
  min-height: auto;
  background: none;
}

.mean-container .mean-nav > ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}
.mean-container .mean-nav > ul .homemenu-items {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .mean-container .mean-nav > ul .homemenu-items {
    flex-wrap: wrap;
  }
}
.mean-container .mean-nav > ul .homemenu-items .homemenu {
  position: relative;
}
@media (max-width: 1199px) {
  .mean-container .mean-nav > ul .homemenu-items .homemenu {
    max-width: 300px;
    text-align: center;
    margin: 0 auto;
    border: 1px solid var(--border);
    padding: 10px;
  }
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb {
  position: relative;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  gap: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  margin-top: 20px;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
  padding: 12px 20px;
  color: var(--white) !important;
  width: initial;
  font-size: 16px;
  text-align: center;
  border-radius: 0;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  color: var(--white) !important;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb::before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 19, 19, 0)), to(#5e5ef6));
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #252527 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb img {
  width: 100%;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-title {
  text-align: center;
  margin: 15px auto;
  display: inline-block;
  font-size: 16px;
}

.mean-container a.meanmenu-reveal {
  display: none !important;
}

.mean-container .mean-nav ul li a {
  width: 100%;
  padding: 10px 0;
  color: var(--header);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  text-transform: capitalize;
  border-bottom: 1px solid var(--border) !important;
  border: none;
}
.mean-container .mean-nav ul li a:hover {
  color: var(--theme);
}

.mean-container .mean-nav ul li a:last-child {
  border-bottom: 0;
}

.mean-container .mean-nav ul li a:hover {
  color: var(--theme);
}

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 5px;
  padding: 0 !important;
}

.mean-container .mean-nav ul li > a > i {
  display: none;
}

.mean-container .mean-nav ul li > a.mean-expand i {
  display: inline-block;
  font-size: 18px;
}

.mean-container .mean-nav > ul > li:first-child > a {
  border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transition: all 0.4s ease-in-out;
}

.mean-container .mean-nav ul li .mega-menu li a {
  height: 200px;
  width: 100%;
  padding: 0;
  border-top: 0;
  margin-bottom: 20px;
}

.news-box-items {
  margin-top: 30px;
}
.news-box-items .news-image {
  position: relative;
}
.news-box-items .news-image img {
  width: 100%;
  height: 100%;
}
.news-box-items .news-image .post-date {
  position: absolute;
  display: grid;
  top: 25px;
  left: 20px;
  background-color: var(--theme);
  text-align: center;
}
.news-box-items .news-image .post-date li {
  font-size: 18px;
  font-weight: 700;
  font-family: "Exo", sans-serif;
  color: var(--white);
  padding-top: 10px;
  width: 65px;
  height: 38px;
}
.news-box-items .news-image .post-date li:last-child {
  background-color: var(--header);
  font-size: 14px;
  font-weight: 400;
  font-family: "Public Sans", sans-serif;
  padding: 5px 8px;
  margin: 3px;
  margin-top: 0;
}
.news-box-items .news-content {
  padding: 40px;
  background-color: var(--bg);
}
@media (max-width: 1199px) {
  .news-box-items .news-content {
    padding: 30px;
  }
}
@media (max-width: 470px) {
  .news-box-items .news-content {
    padding: 25px;
  }
}
.news-box-items .news-content .post-box li img {
  margin-right: 10px;
}
.news-box-items .news-content h3 {
  font-weight: 700;
  margin-top: 15px;
  font-size: 24px;
}
@media (max-width: 575px) {
  .news-box-items .news-content h3 {
    font-size: 20px;
  }
}
.news-box-items .news-content h3 a:hover {
  color: var(--theme);
}
.news-box-items .news-content .text-btn {
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  margin-top: 20px;
  text-decoration: underline;
  text-transform: uppercase;
  color: var(--theme);
}
.news-box-items .news-content .text-btn:hover {
  color: var(--black);
}
.news-box-items .news-content .text-btn i {
  margin-left: 5px;
  transform: rotate(-40deg);
  transition: all 0.4s ease-in-out;
}

.news-card-items-3 {
  margin-top: 30px;
}
.news-card-items-3 .news-image {
  position: relative;
}
.news-card-items-3 .news-image .post {
  background-color: var(--theme);
  padding: 18px 12px;
  position: absolute;
  left: 18px;
  top: 18px;
}
.news-card-items-3 .news-image .post h3 {
  font-size: 36px;
  line-height: 1;
  color: var(--white);
  text-align: center;
}
.news-card-items-3 .news-image .post span {
  color: var(--white);
  font-size: 12px;
  font-weight: 400;
}
.news-card-items-3 .news-image img {
  width: 100%;
  height: 100%;
}
.news-card-items-3 .news-content {
  padding: 30px;
  background-color: var(--bg);
}
.news-card-items-3 .news-content .post-list {
  display: flex;
  align-items: center;
  gap: 30px;
}
.news-card-items-3 .news-content .post-list li {
  font-size: 14px;
  font-weight: 400;
}
.news-card-items-3 .news-content .post-list li i {
  margin-right: 5px;
  color: var(--theme);
}
.news-card-items-3 .news-content h3 {
  font-weight: 600;
  margin-bottom: 15px;
}
.news-card-items-3 .news-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.news-card-items-3 .news-content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(#b20e20
, #b20e20
);
}
.news-card-items-3 .news-content p {
  border-bottom: 1px solid var(--border);
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.news-card-items-3 .news-content .text-btn {
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  text-decoration: underline;
  text-transform: uppercase;
  color: var(--theme);
}
.news-card-items-3 .news-content .text-btn:hover {
  color: var(--black);
}
.news-card-items-3 .news-content .text-btn i {
  margin-left: 5px;
  transform: rotate(-40deg);
  transition: all 0.4s ease-in-out;
}
.news-card-items-3.style-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .news-card-items-3.style-2 {
    flex-wrap: wrap;
    background-color: var(--bg);
  }
}
.news-card-items-3.style-2 .news-image img {
  width: initial;
  height: initial;
}
@media (max-width: 1199px) {
  .news-card-items-3.style-2 .news-image {
    flex-basis: 100%;
  }
  .news-card-items-3.style-2 .news-image img {
    width: 100%;
    height: 100%;
  }
}
.news-card-items-3.style-2 .news-content {
  padding: 30px 20px;
  background-color: var(--bg);
}
.news-card-items-3.style-2 .news-content h4 {
  font-weight: 600;
  margin-bottom: 15px;
}
.news-card-items-3.style-2 .news-content h4 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.news-card-items-3.style-2 .news-content h4 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(#b20e20
, #b20e20
);
}
.news-card-items-3.style-2 .news-content p {
  margin-bottom: 18px;
  padding-bottom: 18px;
}
.news-card-items-3.style-3 {
  margin-top: 20px;
}

.news-card-items-1 {
  margin-top: 30px;
}
.news-card-items-1 .news-image {
  overflow: hidden;
}
.news-card-items-1 .news-image img {
  width: 100%;
  height: 100%;
  transform: scale(1.02);
  transition: all 1.5s ease-out;
}
.news-card-items-1 .news-content {
  padding: 30px 0 0;
}
.news-card-items-1 .news-content .post-list {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 10px;
}
@media (max-width: 1199px) {
  .news-card-items-1 .news-content .post-list {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.news-card-items-1 .news-content .post-list li {
  font-size: 14px;
  font-weight: 400;
}
.news-card-items-1 .news-content .post-list li i {
  margin-right: 5px;
  color: var(--theme);
}
.news-card-items-1 .news-content h3 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}
@media (max-width: 1399px) {
  .news-card-items-1 .news-content h3 {
    font-size: 20px;
  }
}
.news-card-items-1 .news-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.news-card-items-1 .news-content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(#b20e20
,#b20e20
);
}
.news-card-items-1 .news-content .text-btn {
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  text-decoration: underline;
  text-transform: uppercase;
  color: var(--theme);
}
.news-card-items-1 .news-content .text-btn:hover {
  color: var(--black);
}
.news-card-items-1 .news-content .text-btn i {
  margin-left: 5px;
  transform: rotate(-40deg);
  transition: all 0.4s ease-in-out;
}
.news-card-items-1:hover .news-image img {
  -webkit-transform: scale3d(1.1, 1.1, 1);
  transform: scale3d(1.1, 1.1, 1);
}

.news-standard-items {
  margin-bottom: 20px;
}
.news-standard-items .news-image img {
  width: 100%;
  height: 100%;
}
.news-standard-items .news-content {
  padding: 30px 0;
}
.news-standard-items .news-content .post-list {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 10px;
}
@media (max-width: 1199px) {
  .news-standard-items .news-content .post-list {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.news-standard-items .news-content .post-list li {
  font-size: 14px;
  font-weight: 400;
}
.news-standard-items .news-content .post-list li i {
  margin-right: 5px;
  color: var(--theme);
}
.news-standard-items .news-content h3 {
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 36px;
}
@media (max-width: 1199px) {
  .news-standard-items .news-content h3 {
    font-size: 32px;
  }
}
@media (max-width: 991px) {
  .news-standard-items .news-content h3 {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  .news-standard-items .news-content h3 {
    font-size: 25px;
  }
}
.news-standard-items .news-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.news-standard-items .news-content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(#b20e20
, #b20e20
);
}
.news-standard-items .news-content p {
  max-width: 796px;
}
.news-standard-items .news-content .theme-btn {
  margin-top: 40px;
}

.main-sideber .single-sidebar-widget {
  padding: 40px 30px;
  margin-bottom: 30px;
  background-color: var(--bg-3);
}
.main-sideber .single-sidebar-widget .wid-title {
  margin-bottom: 40px;
}
.main-sideber .single-sidebar-widget .wid-title h3 {
  position: relative;
  padding-bottom: 15px;
}
.main-sideber .single-sidebar-widget .wid-title h3::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 40px;
  height: 3px;
  background-color: var(--theme);
}
.main-sideber .single-sidebar-widget .wid-title h3::after {
  position: absolute;
  bottom: 0;
  left: 60px;
  content: "";
  width: 77px;
  height: 3px;
  background-color: var(--header);
}
.main-sideber .single-sidebar-widget .search-widget form {
  width: 100%;
  position: relative;
}
.main-sideber .single-sidebar-widget .search-widget form input {
  background-color: var(--white);
  font-size: 18px;
  font-weight: 400;
  padding: 16px 20px;
  width: 100%;
  border: none;
  color: var(--text);
}
.main-sideber .single-sidebar-widget .search-widget form button {
  position: absolute;
  right: -2px;
  top: 0;
  width: 58px;
  border-radius: 8px;
  font-size: 18px;
  height: 100%;
  background-color: var(--theme);
  color: var(--white);
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.main-sideber .single-sidebar-widget .search-widget form button:hover {
  background-color: var(--header);
}
.main-sideber .single-sidebar-widget .news-widget-categories ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 400;
  background-color: var(--white);
  transition: all 0.4s ease-in-out;
  border-radius: 0;
  line-height: 1;
  padding: 20px;
}
.main-sideber .single-sidebar-widget .news-widget-categories ul li a {
  color: var(--text);
}
.main-sideber .single-sidebar-widget .news-widget-categories ul li a i {
  color: var(--theme);
  margin-right: 5px;
}
.main-sideber .single-sidebar-widget .news-widget-categories ul li span {
  transition: all 0.4s ease-in-out;
  color: var(--text);
}
.main-sideber .single-sidebar-widget .news-widget-categories ul li:not(:last-child) {
  margin-bottom: 20px;
}
.main-sideber .single-sidebar-widget .news-widget-categories ul li:hover a {
  color: var(--theme);
}
.main-sideber .single-sidebar-widget .news-widget-categories ul li:hover a i {
  color: var(--theme);
}
.main-sideber .single-sidebar-widget .news-widget-categories ul li:hover span {
  color: var(--theme);
}
.main-sideber .single-sidebar-widget .recent-post-area .recent-items {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-sideber .single-sidebar-widget .recent-post-area .recent-items:not(:last-child) {
  margin-bottom: 20px;
}
.main-sideber .single-sidebar-widget .recent-post-area .recent-items .recent-content ul li {
  color: var(--text);
}
.main-sideber .single-sidebar-widget .recent-post-area .recent-items .recent-content ul li i {
  margin-right: 5px;
  color: var(--theme);
}
.main-sideber .single-sidebar-widget .recent-post-area .recent-items .recent-content h4 {
  font-size: 18px;
  margin-top: 10px;
  line-height: 133%;
}
@media (max-width: 1199px) {
  .main-sideber .single-sidebar-widget .recent-post-area .recent-items .recent-content h4 {
    font-size: 16px;
  }
}
.main-sideber .single-sidebar-widget .recent-post-area .recent-items .recent-content h4 a:hover {
  color: var(--theme);
}
.main-sideber .single-sidebar-widget .tagcloud a {
  display: inline-block;
  padding: 14px 16px;
  line-height: 1;
  font-size: 16px;
  font-weight: 400;
  background: var(--white);
  margin-right: 5px;
  text-transform: capitalize;
  margin-bottom: 10px;
  color: var(--text);
  transition: all 0.4s ease-in-out;
}
@media (max-width: 575px) {
  .main-sideber .single-sidebar-widget .tagcloud a {
    padding: 10px;
  }
}
.main-sideber .single-sidebar-widget .tagcloud a:last-child {
  margin-right: 0;
}
.main-sideber .single-sidebar-widget .tagcloud a:hover {
  background-color: var(--theme);
  color: var(--white);
}

.news-details-wrapper .news-details-items .news-image img {
  width: 100%;
  height: 100%;
}
.news-details-wrapper .news-details-items .news-content {
  margin-top: 30px;
}
.news-details-wrapper .news-details-items .news-content .post-list {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 10px;
}
@media (max-width: 1199px) {
  .news-details-wrapper .news-details-items .news-content .post-list {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.news-details-wrapper .news-details-items .news-content .post-list li {
  font-size: 14px;
  font-weight: 400;
}
.news-details-wrapper .news-details-items .news-content .post-list li i {
  margin-right: 5px;
  color: var(--theme);
}
.news-details-wrapper .news-details-items .news-content h3 {
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 36px;
}
@media (max-width: 1199px) {
  .news-details-wrapper .news-details-items .news-content h3 {
    font-size: 30px;
  }
}
@media (max-width: 991px) {
  .news-details-wrapper .news-details-items .news-content h3 {
    font-size: 25px;
  }
}
@media (max-width: 575px) {
  .news-details-wrapper .news-details-items .news-content h3 {
    font-size: 20px;
  }
}
.news-details-wrapper .news-details-items .news-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.news-details-wrapper .news-details-items .news-content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(#b20e20
, #b20e20
);
}
.news-details-wrapper .news-details-items .news-content p {
  max-width: 796px;
}
.news-details-wrapper .news-details-items .news-content .theme-btn {
  margin-top: 40px;
}
.news-details-wrapper .sideber-box {
  padding: 40px 80px;
  border: 1px solid var(--border);
  position: relative;
  margin-top: 50px;
  margin-bottom: 40px;
}
@media (max-width: 1199px) {
  .news-details-wrapper .sideber-box {
    padding: 60px;
  }
}
@media (max-width: 991px) {
  .news-details-wrapper .sideber-box {
    padding: 50px;
  }
}
@media (max-width: 767px) {
  .news-details-wrapper .sideber-box {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .news-details-wrapper .sideber-box {
    padding: 30px;
  }
}
.news-details-wrapper .sideber-box .quate-icon {
  font-size: 30px;
  color: var(--theme);
  position: absolute;
  left: 30px;
  top: -15px;
}
.news-details-wrapper .sideber-box p {
  font-style: italic;
  font-weight: 500;
  color: var(--header);
}
.news-details-wrapper .sideber-box span {
  color: var(--white);
  font-size: 18px;
  padding: 5px 24px;
  background-color: var(--theme);
  position: absolute;
  left: 90px;
  bottom: -15px;
}
.news-details-wrapper .news-thumb img {
  width: 100%;
  height: 100%;
}
.news-details-wrapper .tag-share-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 30px 0;
}
.news-details-wrapper .tag-share-wrap .tagcloud span {
  font-size: 20px;
  font-weight: 600;
  display: inline-block;
  margin-right: 15px;
  color: var(--header);
  font-family: "Exo", sans-serif;
}
@media (max-width: 1199px) {
  .news-details-wrapper .tag-share-wrap .tagcloud span {
    margin-right: 10px;
  }
}
.news-details-wrapper .tag-share-wrap .tagcloud a {
  display: inline-block;
  padding: 12px 26px;
  line-height: 1;
  background: var(--white);
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
  margin-right: 8px;
  text-transform: capitalize;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1199px) {
  .news-details-wrapper .tag-share-wrap .tagcloud a {
    padding: 10px 7px;
  }
}
@media (max-width: 991px) {
  .news-details-wrapper .tag-share-wrap .tagcloud a {
    padding: 10px 18px;
  }
}
@media (max-width: 1199px) {
  .news-details-wrapper .tag-share-wrap .tagcloud a {
    margin-bottom: 15px;
  }
}
.news-details-wrapper .tag-share-wrap .tagcloud a:hover {
  background-color: var(--theme);
  color: var(--white);
}
.news-details-wrapper .tag-share-wrap .social-share span {
  color: var(--header);
  font-family: "Exo", sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-right: 15px;
  display: inline-block;
}
.news-details-wrapper .tag-share-wrap .social-share a {
  font-size: 16px;
  color: var(--text);
  display: inline-block;
  width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  background-color: rgba(14, 18, 29, 0.08);
  border-radius: 100%;
}
.news-details-wrapper .tag-share-wrap .social-share a:not(:last-child) {
  margin-right: 10px;
}
.news-details-wrapper .tag-share-wrap .social-share a:hover {
  color: var(--white);
  background-color: var(--theme);
}
.news-details-wrapper .comments-area {
  margin-top: 40px;
}
.news-details-wrapper .comments-area .comments-heading {
  margin-bottom: 30px;
}
.news-details-wrapper .comments-area .comments-heading h3 {
  font-size: 30px;
}
@media (max-width: 575px) {
  .news-details-wrapper .comments-area .comments-heading h3 {
    font-size: 25px;
  }
}
.news-details-wrapper .comments-area .comments-heading h3 i {
  margin-right: 5px;
  color: var(--theme);
}
@media (max-width: 575px) {
  .news-details-wrapper .comments-area .comments-heading {
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .news-details-wrapper .comments-area .blog-single-comment {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.news-details-wrapper .comments-area .blog-single-comment .content .head .con h3 {
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 600;
}
.news-details-wrapper .comments-area .blog-single-comment .content .head .con span {
  display: inline-block;
  margin-bottom: 5px;
}
.news-details-wrapper .comments-area .blog-single-comment .content .head .reply {
  font-weight: 500;
  font-size: 18px;
  color: var(--theme);
}
.news-details-wrapper .comments-area .blog-single-comment.style-2 {
  margin-left: 120px;
}
@media (max-width: 1199px) {
  .news-details-wrapper .comments-area .blog-single-comment.style-2 {
    margin-left: 0;
  }
}
.news-details-wrapper .comment-form-wrap {
  border-top: 1px solid var(--border);
  padding-top: 40px;
}
.news-details-wrapper .comment-form-wrap h3 {
  font-size: 30px;
}
.news-details-wrapper .comment-form-wrap h3 i {
  margin-right: 5px;
  color: var(--theme);
}
.news-details-wrapper .comment-form-wrap p {
  margin-bottom: 20px;
}
.news-details-wrapper .comment-form-wrap .form-clt {
  position: relative;
}
.news-details-wrapper .comment-form-wrap .form-clt input, .news-details-wrapper .comment-form-wrap .form-clt textarea {
  width: 100%;
  outline: none;
  border: none;
  background-color: var(--white);
  padding-bottom: 20px;
  border: 1px solid var(--border);
  padding: 16px 20px;
  transition: all 0.4s ease-in-out;
  color: var(--text);
  font-size: 14px;
  font-weight: 400;
}
.news-details-wrapper .comment-form-wrap .form-clt input::placeholder, .news-details-wrapper .comment-form-wrap .form-clt textarea::placeholder {
  color: var(--text);
}
.news-details-wrapper .comment-form-wrap .form-clt .icon {
  position: absolute;
  right: 24px;
  top: 15px;
}
.news-details-wrapper .comment-form-wrap .form-clt textarea {
  padding-bottom: 150px;
  resize: none;
}
@media (max-width: 1199px) {
  .news-details-wrapper .comment-form-wrap .form-clt textarea {
    padding-bottom: 100px;
  }
}
.news-details-wrapper .comment-form-wrap .theme-btn {
  margin-top: 20px !important;
}
.news-details-wrapper .comment-form-wrap .form-check .form-check-label {
  font-size: 15px;
  color: #57595C;
}
.news-details-wrapper .comment-form-wrap .form-check .form-check-input {
  float: left;
  margin-left: -25px;
  transform: translateY(1x);
}
.news-details-wrapper .comment-form-wrap .form-check .form-check-input:checked {
  background-color: var(--theme);
  border-color: var(--theme);
}


.search-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  background-color: rgba(255, 255, 255, 0.9);
}
.search-wrap .search-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.search-wrap .search-cell {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}
.search-wrap .search-field-holder {
  width: 50%;
  margin: auto;
  position: relative;
  animation: slideInUp 0.3s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .search-wrap .search-field-holder {
    width: 70%;
  }
}
@media (max-width: 575px) {
  .search-wrap .search-field-holder {
    width: 80%;
  }
}
.search-wrap .main-search-input {
  width: 100%;
  height: 70px;
  border: 0;
  padding: 0 50px;
  text-transform: capitalize;
  background: transparent;
  font-size: 25px;
  color: var(--theme);
  border-bottom: 2px solid var(--theme);
  text-align: center;
  letter-spacing: 2px;
}

@media (max-width: 575px) {
  .search-wrap .main-search-input {
    height: 50px;
    padding: 0 0;
    line-height: 50px;
    font-size: 18px;
  }
}
.search-wrap input.form-control,
.search-wrap input.form-control:focus {
  background-color: var(--theme);
}

input.main-search-input::placeholder {
  color: var(--theme);
  opacity: 1;
  font-size: 25px;
}

@media (max-width: 575px) {
  input.main-search-input::placeholder {
    font-size: 18px;
  }
}
.search-close {
  position: absolute;
  top: 50px;
  right: 50px;
  font-size: 30px;
  color: var(--theme);
  cursor: pointer;
}

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}

.cursor-inner {
  width: 6px;
  height: 6px;
  z-index: 10000001;
  background-color: var(--theme);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -35px;
  margin-top: -35px;
  width: 70px;
  height: 70px;
  background-color: var(--theme);
  opacity: 0.3;
}

.cursor-outer {
  margin-left: -12px;
  margin-top: -12px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--theme);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 10000000;
  opacity: 0.5;
  -webkit-transition: all 0.08s ease-out;
  -o-transition: all 0.08s ease-out;
  transition: all 0.08s ease-out;
}

.cursor-outer.cursor-hover {
  opacity: 0;
}



.tab-content {
  margin-top: 30px;
}
.tab-content .pricing-card-item {
  padding: 40px;
  background-color: var(--white);
  position: relative;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1199px) {
  .tab-content .pricing-card-item {
    padding: 30px;
  }
}
.tab-content .pricing-card-item.style-bg {
  background-color: var(--header);
}
.tab-content .pricing-card-item.style-bg .pricing-shape {
  opacity: 1;
  visibility: visible;
}
.tab-content .pricing-card-item.style-bg .pricing-header span {
  color: var(--white);
}
.tab-content .pricing-card-item.style-bg::before {
  display: none;
}
.tab-content .pricing-card-item .pricing-shape {
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.tab-content .pricing-card-item .popular {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  background-color: var(--theme);
  border-radius: 100px;
  padding: 5px 10px;
  line-height: 1;
  transform: rotate(-90deg);
  position: absolute;
  top: 60px;
  right: -24px;
}
.tab-content .pricing-card-item .pricing-header span {
  border-bottom: 2px solid var(--theme);
  display: inline-block;
  margin-bottom: 30px;
  padding-bottom: 5px;
  transition: all 0.4s ease-in-out;
  font-size: 20px;
  font-weight: 600;
  color: var(--header);
}
.tab-content .pricing-card-item .pricing-header h2 {
  color: var(--theme);
  padding-bottom: 20px;
  border-bottom: 1px solid #E0E0E0;
}
.tab-content .pricing-card-item .pricing-header h2 span {
  font-size: 18px;
  font-weight: 500;
  color: #4D5765;
  font-family: "Exo", sans-serif;
}
.tab-content .pricing-card-item .pricing-list {
  margin-top: 30px;
  margin-bottom: 30px;
}
.tab-content .pricing-card-item .pricing-list li {
  color: var(--text);
}
.tab-content .pricing-card-item .pricing-list li:not(:last-child) {
  margin-bottom: 10px;
}
.tab-content .pricing-card-item .pricing-list li i {
  color: var(--theme);
  margin-right: 5px;
}
.tab-content .pricing-card-item::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--header);
  transform: scaleX(0.7) rotateX(20deg);
  opacity: 0;
  transition: all 0.4s linear;
  z-index: -1;
  transition: all 0.4s ease-in-out;
}
.tab-content .pricing-card-item:hover::before {
  transform: scaleX(1) rotateX(0deg);
  transition: all 0.4s linear;
  opacity: 1;
  z-index: 1;
}
.tab-content .pricing-card-item:hover .pricing-shape {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.tab-content .pricing-card-item:hover .popular {
  z-index: 1;
}
.tab-content .pricing-card-item:hover .pricing-header {
  position: relative;
  z-index: 1;
}
.tab-content .pricing-card-item:hover .pricing-header span {
  color: var(--white);
  z-index: 1;
}
.tab-content .pricing-card-item:hover .pricing-header h2 {
  border-bottom: 1px solid #E0E0E0;
  z-index: 1;
}
.tab-content .pricing-card-item:hover .pricing-list {
  z-index: 1;
  position: relative;
}

.pricing-section {
  position: relative;
}
.pricing-section .left-shape {
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 1199px) {
  .pricing-section .left-shape {
    display: none;
  }
}
.pricing-section .right-shape {
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 1199px) {
  .pricing-section .right-shape {
    display: none;
  }
}

.project-card-item-1 {
  margin-top: 30px;
}
.project-card-item-1 .project-image {
  position: relative;
  overflow: hidden;
}
.project-card-item-1 .project-image .arrow-icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background-color: var(--white);
  border: 1px solid var(--border);
  position: absolute;
  left: 50%;
  top: -100px;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -50%);
}
.project-card-item-1 .project-image .arrow-icon .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--theme);
  color: var(--white);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
}
.project-card-item-1 .project-image .arrow-icon .icon i {
  transform: rotate(0deg);
}
.project-card-item-1 .project-image img {
  width: 100%;
  height: 100%;
}
.project-card-item-1 .project-content {
  margin-top: 30px;
}
.project-card-item-1 .project-content h3 {
  margin-bottom: 5px;
}
.project-card-item-1 .project-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.project-card-item-1 .project-content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(#b20e20
, #b20e20
);
}
.project-card-item-1:hover .project-image .arrow-icon {
  opacity: 1;
  visibility: visible;
  top: 50%;
}

/* =========================================================
   ARSHA INFRASTRUCTURE
   MODERN PROJECTS SECTION
========================================================= */

.arsha-projects {
    --project-gap: 18px;
    --project-radius: 14px;
    --project-bg: #ffffff;
    --project-text: #17191d;
    --project-muted: #777b82;
    --project-red: #c8102e;

    position: relative;
    width: 100%;
    padding: 110px 0 120px;
    background: var(--project-bg);
    overflow: hidden;
}


/* =========================================================
   CONTAINER
========================================================= */

.arsha-projects-container {
    width: min(1440px, calc(100% - 100px));
    margin: 0 auto;
}


/* =========================================================
   SECTION HEADER
========================================================= */

.arsha-projects-header {
    display: block;
    margin-bottom: 55px;
}


/* =========================================================
   HEADING
========================================================= */

.arsha-projects-heading {
    max-width: 720px;
}


/* =========================================================
   EYEBROW
========================================================= */

.arsha-projects-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 18px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;

    color: var(--project-red);
}

.arsha-projects-eyebrow::before {
    content: "";

    width: 38px;
    height: 2px;

    background: var(--project-red);
}


/* =========================================================
   MAIN TITLE
========================================================= */

.arsha-projects-title {
    margin: 0;

    font-size: 40px;
    line-height: 0.98;
    font-weight: 700;
    letter-spacing: -2.5px;

    color: var(--project-text);
}



/* =========================================================
   PROJECT GRID
========================================================= */

.arsha-project-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    grid-template-rows:
        repeat(4, 330px);

    gap: var(--project-gap);

    width: 100%;
}


/* =========================================================
   PROJECT CARD
========================================================= */

.arsha-project-card {
    position: relative;

    min-width: 0;
    min-height: 0;

    overflow: hidden;

    border-radius: var(--project-radius);

    background: #eeeeee;

    isolation: isolate;
}


/* =========================================================
   WIDE PROJECT CARD
========================================================= */

.arsha-project-card.is-wide {
    grid-column: span 2;
}


/* =========================================================
   PROJECT IMAGE
========================================================= */

.arsha-project-card img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transform: scale(1);

    transition:
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.arsha-project-card::before {
    content: "";

    position: absolute;
    z-index: 1;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.78) 0%,
            rgba(0, 0, 0, 0.28) 38%,
            rgba(0, 0, 0, 0) 72%
        );

    opacity: 0.82;

    pointer-events: none;

    transition: opacity 0.4s ease;
}


/* =========================================================
   HOVER IMAGE
========================================================= */

.arsha-project-card:hover img {
    transform: scale(1.07);
}

.arsha-project-card:hover::before {
    opacity: 1;
}


/* =========================================================
   PROJECT INFORMATION
========================================================= */

.arsha-project-info {
    position: absolute;
    z-index: 3;

    left: 25px;
    right: 25px;
    bottom: 23px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;

    transform: translateY(8px);

    transition: transform 0.4s ease;
}


.arsha-project-card:hover .arsha-project-info {
    transform: translateY(0);
}


/* =========================================================
   PROJECT NUMBER
========================================================= */

.arsha-project-number {
    display: block;

    margin-bottom: 8px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;

    color: rgba(255, 255, 255, 0.75);
}


/* =========================================================
   PROJECT TITLE
========================================================= */

.arsha-project-name {
    margin: 0;

    font-size: 21px;
    line-height: 1.15;
    font-weight: 600;

    color: #ffffff;
}


/* =========================================================
   PROJECT CATEGORY
========================================================= */

.arsha-project-category {
    flex-shrink: 0;

    padding: 8px 12px;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;

    color: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50px;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    background: rgba(255, 255, 255, 0.08);
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1500px) {

    .arsha-project-grid {
        grid-template-rows:
            repeat(4, 360px);
    }

}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1199px) {

    .arsha-projects-container {
        width: calc(100% - 70px);
    }

    .arsha-projects {
        padding: 90px 0 100px;
    }

    .arsha-project-grid {
        grid-template-rows:
            repeat(4, 290px);
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .arsha-projects-container {
        width: calc(100% - 50px);
    }

    .arsha-projects-header {
        margin-bottom: 40px;
    }

    .arsha-projects-title {
        letter-spacing: -1.5px;
    }

    .arsha-project-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        grid-template-rows:
            repeat(7, 300px);

        gap: 14px;
    }

    .arsha-project-card.is-wide {
        grid-column: span 2;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .arsha-projects {
        padding: 70px 0 80px;
    }

    .arsha-projects-container {
        width: calc(100% - 30px);
    }

    .arsha-projects-header {
        margin-bottom: 32px;
    }

    .arsha-projects-eyebrow {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .arsha-projects-title {
        font-size: 42px;
        letter-spacing: -1.5px;
    }

    .arsha-projects-description {
        margin-top: 18px;

        font-size: 14px;
        line-height: 1.7;
    }

    .arsha-project-grid {
        grid-template-columns: 1fr;

        grid-template-rows: none;

        gap: 14px;
    }

    .arsha-project-card,
    .arsha-project-card.is-wide {
        grid-column: span 1;

        height: 300px;
    }

    .arsha-project-info {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }

    .arsha-project-name {
        font-size: 18px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .arsha-project-card,
    .arsha-project-card.is-wide {
        height: 260px;
    }

}


.project-wrapper .project-image img {
    width: 100%;
    height: 100%;
}

.project-wrapper .project-image-2 img {
    width: 100%;
    height: 100%;
}

.project-wrapper .counter-box-area {
    display: flex;
    justify-content: space-between;
    margin-left: 30px;
}

@media (max-width: 1199px) {
    .project-wrapper .counter-box-area {
        margin-left: 0;
    }
}

.project-wrapper .counter-box-area .count-items {
    margin-top: 40px;
}

.project-wrapper .counter-box-area .count-items p {
    border-top: 1px solid var(--border);
    padding-top: 10px;
    margin-top: 10px;
}

.projct-card-items {
    margin-top: 30px;
}

.projct-card-items .thumb {
    height: 390px;
    position: relative;
    overflow: hidden;
}

.projct-card-items .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.projct-card-items .content {
    margin-top: 20px;
}

.projct-card-items .content h3 {
    font-size: 24px;
    font-weight: 600;
}

.projct-card-items .content h3 a:hover {
    color: var(--theme);
}

.project-wrapper-2 {
    margin-top: 50px;
    margin-right: -30%;
}

@media (max-width: 1199px) {
    .project-wrapper-2 {
        margin-top: 30px;
        margin-right: 0;
    }
}

.project-wrapper-2 .project-card-item-2 .project-image {
    position: relative;
    height: 390px;
    overflow: hidden;
}

.project-wrapper-2 .project-card-item-2 .project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-wrapper-2 .project-card-item-2:hover .project-image img {
    transform: scale(1.04);
}

.project-wrapper-2 .project-card-item-2 .project-image .project-content {
    padding: 20px 30px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85),
        rgba(0, 0, 0, 0)
    );

    transition: all 0.4s ease-in-out;

    opacity: 0;
    visibility: hidden;
}

.project-wrapper-2 .project-card-item-2 .project-image .project-content h3 {
    margin-bottom: 0;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
}

.project-wrapper-2 .project-card-item-2 .project-image .project-content h3 a {
    color: #ffffff;

    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;

    display: inline;
}

.project-wrapper-2 .project-card-item-2 .project-image .project-content h3 a:hover {
    color: #ffffff;

    background-size: 100% 2px;

    background-image: linear-gradient(
        #b20e20,
        #b20e20
    );
}

.project-wrapper-2 .project-card-item-2:hover .project-image .project-content {
    opacity: 1;
    visibility: visible;
}

.project-section-2 {
    position: relative;
}

.project-section-2 .line-shape {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

@media (max-width: 1199px) {
    .project-section-2 .line-shape {
        display: none;
    }
}

.project-section-2 .left-shape {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
}

@media (max-width: 1199px) {
    .project-section-2 .left-shape {
        display: none;
    }
}

.project-section-2 .array-button-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 70px;
    position: relative;
}

@media (max-width: 1199px) {
    .project-section-2 .array-button-item {
        flex-wrap: wrap;
        gap: 30px;
        margin-top: 30px;
    }
}

.project-section-2 .array-button-item::before {
    position: absolute;
    top: 30px;
    left: 86px;
    width: 965px;
    height: 1px;
    content: "";
    background: #2A2A2A;
}

@media (max-width: 1199px) {
    .project-section-2 .array-button-item::before {
        display: none;
    }
}

.project-section-2 .array-button-item .content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.project-section-2 .array-button-item .content h4 {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}

.project-section-2 .array-button-item .content h5 {
    font-weight: 700;
    color: var(--theme);
}

.project-section-2 .array-button-item .content h5 span {
    color: var(--border);
    font-size: 16px;
    display: inline-block;
    margin-right: 5px;
}

.project-section-2 .array-button-item .array-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.project-section-2 .array-button-item .array-buttons .array-prev {
    background-color: var(--white);
    color: var(--theme);
}

.project-section-2 .array-button-item .array-buttons .array-prev:hover {
    background-color: var(--theme);
    color: var(--white);
}

.project-section-2 .array-button-item .array-buttons .array-next:hover {
    background-color: var(--white);
    color: var(--theme);
}

.project-section-2 .swiper-slide.swiper-slide-active .project-image .project-content {
    opacity: 1;
    visibility: visible;
    bottom: 0;
    left: 0;
    right: 0;
}

@media (max-width: 767px) {
    .projct-card-items .thumb,
    .project-wrapper-2 .project-card-item-2 .project-image {
        height: 330px;
    }

    .project-wrapper-2 .project-card-item-2 .project-image .project-content {
        padding: 18px 20px;
    }

    .project-wrapper-2 .project-card-item-2 .project-image .project-content h3 {
        font-size: 19px;
    }
}

.project-details-wrapper .project-details-image {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .project-details-wrapper .project-details-image {
    margin-bottom: 0;
  }
}
.project-details-wrapper .project-details-image img {
  width: 100%;
  height: 100%;
}
.project-details-wrapper .project-informaion-box {
  background-color: var(--bg-3);
  border-top: 4px solid var(--theme);
  padding: 40px;
  margin-right: 30px;
  margin-top: -220px;
}
@media (max-width: 1199px) {
  .project-details-wrapper .project-informaion-box {
    margin-right: 0;
    margin-top: 0;
  }
}
.project-details-wrapper .project-informaion-box h2 {
  padding-bottom: 10px;
  border-bottom: 2px solid var(--theme);
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 600;
}
.project-details-wrapper .project-informaion-box .project-list li {
  font-size: 18px;
  font-weight: 600;
  color: var(--header);
  font-family: "Exo", sans-serif;
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.project-details-wrapper .project-informaion-box .project-list li span {
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  font-family: "Public Sans", sans-serif;
  display: inline-block;
  margin-left: 5px;
}
.project-details-wrapper .project-thumb img {
  width: 100%;
  height: 100%;
}
.project-details-wrapper h3 {
  font-size: 36px;
  margin-top: 60px;
}
@media (max-width: 1199px) {
  .project-details-wrapper h3 {
    margin-top: 30px;
  }
}
@media (max-width: 575px) {
  .project-details-wrapper h3 {
    font-size: 25px;
  }
}
.project-details-wrapper .thumb img {
  width: 100%;
  height: 100%;
}
.project-details-wrapper .project-list-content p {
  max-width: 793px;
  margin-bottom: 20px;
}
.project-details-wrapper .project-list-content .list-item {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media (max-width: 1199px) {
  .project-details-wrapper .project-list-content .list-item {
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .project-details-wrapper .project-list-content .list-item {
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media (max-width: 1199px) {
  .project-details-wrapper .project-list-content .list-item .list li {
    font-size: 14px;
  }
}
.project-details-wrapper .project-list-content .list-item .list li i {
  color: var(--theme);
  margin-right: 5px;
}
.project-details-wrapper .project-list-content .list-item .list li:not(:last-child) {
  margin-bottom: 5px;
}
.project-details-wrapper .text {
  margin-top: 60px;
}
@media (max-width: 1199px) {
  .project-details-wrapper .text {
    margin-top: 30px;
  }
}

.project-card-items-2 {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    height: 100%;
}

.project-card-items-2 .project-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 14px;
}

.col-lg-6 .project-card-items-2 .project-image {
    height: 340px;
}

.project-card-items-2 .project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s ease;
}

.project-card-items-2:hover .project-image img {
    transform: scale(1.08);
}

/* Subtle darken on hover instead of gradient (no text to protect now) */
.project-card-items-2 .project-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(8,30,51,0);
    transition: background 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.project-card-items-2:hover .project-image::after {
    background: rgba(8,30,51,0.35);
}

/* Arrow button — centered, appears on hover */
.project-card-items-2 .arrow-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    opacity: 0;
    transition: all 0.35s ease;
    z-index: 3;
}

.project-card-items-2:hover .arrow-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    background: var(--accent, #4FA3E3);
}

@media (max-width: 767px) {
    .project-card-items-2 .project-image,
    .col-lg-6 .project-card-items-2 .project-image {
        height: 200px;
    }

    .project-card-items-2 .arrow-icon {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
        width: 42px;
        height: 42px;
    }
}

.project-card-items-2:hover .project-image img {
  -webkit-transform: scale3d(1.1, 1.1, 1);
  transform: scale3d(1.1, 1.1, 1);
}
.project-card-items-2:hover .project-image .project-content {
  bottom: 24px;
  opacity: 1;
  visibility: visible;
}

.section-title {
  position: relative;
  z-index: 99;
  margin-bottom: 30px;
}
.section-title span {
  font-size: 14px;
  font-weight: 600;
  color: var(--theme);
  text-transform: uppercase;
  position: relative;
  padding-right: 95px;
  display: inline-block;
  margin-bottom: 15px;
}
@media (max-width: 1199px) {
  .section-title span {
    font-size: 16px;
  }
}
.section-title span::before {
  position: absolute;
  content: "";
  left: initial;
  right: 0;
  top: 10px;
  background-color: var(--theme);
  height: 2px;
  width: 80px;
}
.section-title span.style-2 {
  padding-left: 95px;
}
.section-title span.style-2:after {
  position: absolute;
  content: "";
  left: 0;
  right: initial;
  top: 10px;
  background-color: var(--theme);
  height: 2px;
  width: 80px;
}
@media (max-width: 767px) {
  .section-title {
    margin-bottom: 0;
  }
}

.section-title-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 9;
}
@media (max-width: 991px) {
  .section-title-area {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.section-title-area p {
  max-width: 532px;
}
.section-title-area .contact-from-item {
  display: flex;
  align-items: center;
  gap: 24px;
  border-left: 1px solid var(--white);
  height: 160px;
  padding-left: 100px;
}
@media (max-width: 1199px) {
  .section-title-area .contact-from-item {
    padding-left: 0;
    flex-wrap: wrap;
    gap: 20px;
    border-left: 1px none;
  }
}
.section-title-area .contact-from-item .contact-from-box {
  background-color: var(--white);
  padding: 20px;
  text-align: center;
  width: 100px;
  height: 100px;
  line-height: 10px;
  display: inline-block;
  transition: all 0.4s ease-in-out;
}
.section-title-area .contact-from-item .contact-from-box p {
  font-size: 12px;
  font-weight: 400;
  margin-top: 10px;
}
.section-title-area .contact-from-item .contact-from-box:hover {
  background-color: var(--theme);
}
.section-title-area .contact-from-item .contact-from-box:hover .icon img {
  filter: brightness(0) invert(1);
}
.section-title-area .contact-from-item .contact-from-box:hover p {
  color: var(--white);
}
.section-title-area .nav {
  display: flex;
  gap: 0;
  background-color: var(--bg);
}
.section-title-area .nav li {
  font-size: 16px;
  font-weight: 400;
}
.section-title-area .nav li .nav-link {
  color: var(--header);
  transition: all 0.4s ease-in-out;
  padding: 20px 32px;
  border-radius: 0;
  line-height: 1;
  background-color: var(--border);
}
.section-title-area .nav li .nav-link.active {
  position: relative;
  background-color: var(--theme);
  color: var(--white);
}
.section-title-area .counter-cont h2 {
  font-size: 60px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 5px;
  margin-bottom: 10px;
}

.center {
  text-align: center;
  margin: 0 auto;
}

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

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

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

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

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

.section-padding {
  padding: 80px 0;
}
@media (max-width: 1199px) {
  .section-padding {
    padding: 100px 0;
  }
}
@media (max-width: 991px) {
  .section-padding {
    padding: 80px 0;
  }
}

.group {
  padding: 80px;
}
@media (max-width: 1199px) {
  .group {
    padding: 100px 60px;
  }
}
@media (max-width: 991px) {
  .group {
    padding: 80px 20px;
  }
}

.service-wrapper {
  margin-top: 30px;
}
.service-wrapper .service-main-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  position: relative;
  z-index: 9;
}
@media (max-width: 1199px) {
  .service-wrapper .service-main-item {
    padding: 30px;
    flex-wrap: wrap;
    gap: 15px;
  }
}
@media (max-width: 991px) {
  .service-wrapper .service-main-item {
    padding: 30px 0px 0;
  }
}
.service-wrapper .service-main-item::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 0;
  height: 100%;
  content: "";
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover;
  background: url("../../assets/img/home-1/service/bg.jpg");
  transition: all 0.4s ease-in-out;
  z-index: -1;
}
@media (max-width: 991px) {
  .service-wrapper .service-main-item::before {
    display: none;
  }
}
.service-wrapper .service-main-item .service-left-content {
  flex-basis: 20%;
}
@media (max-width: 991px) {
  .service-wrapper .service-main-item .service-left-content {
    flex-basis: initial;
  }
}
.service-wrapper .service-main-item .service-left-content h3 {
  font-size: 23px;
}
.service-wrapper .service-main-item .service-left-content h3 a span {
  font-weight: 400;
}
.service-wrapper .service-main-item .service-left-content h3 a:hover {
  color: var(--theme);
}
.service-wrapper .service-main-item .service-middle-content p {
  max-width: 291px;
}
@media (max-width: 991px) {
  .service-wrapper .service-main-item .service-middle-content p {
    max-width: initial;
  }
}
.service-wrapper .service-main-item .service-button .theme-btn {
  border: 1px solid #E4E4E4;
  background-color: transparent;
  color: var(--header);
}
.service-wrapper .service-main-item:hover::before {
  width: 100%;
}
.service-wrapper .service-main-item:hover .service-left-content h3 a {
  color: var(--white);
}
@media (max-width: 991px) {
  .service-wrapper .service-main-item:hover .service-left-content h3 a {
    color: var(--header);
  }
}
.service-wrapper .service-main-item:hover .service-middle-content p {
  color: var(--white);
}
@media (max-width: 991px) {
  .service-wrapper .service-main-item:hover .service-middle-content p {
    color: var(--header);
  }
}
.service-wrapper .service-main-item:hover .service-button .theme-btn {
  color: var(--white);
}
@media (max-width: 991px) {
  .service-wrapper .service-main-item:hover .service-button .theme-btn {
    color: var(--header);
  }
}
.service-wrapper .service-main-item:hover .service-button .theme-btn::before {
  background-color: var(--theme);
}
.service-wrapper .service-main-item:hover .service-button .theme-btn::after {
  background-color: var(--theme);
}
.service-wrapper .service-main-item:hover .service-button .theme-btn:hover {
  border: 1px solid var(--theme);
}

.service-right-item .accordion-item {
  border: 0;
  background-color: var(--bg);
}
.service-right-item .accordion-item .accordion-header {
  border-top: 1px solid var(--border);
  font-size: 20px;
  font-weight: 600;
}
.service-right-item .accordion-item .accordion-header.style-2 {
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
}
.service-right-item .accordion-item .accordion-header .accordion-button {
  font-weight: 600;
  color: var(--theme);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background-color: var(--bg);
  padding: 25px 30px 0;
  text-transform: capitalize;
  font-size: 24px;
  border: none;
  padding: 20px 20px 0;
}
.service-right-item .accordion-item .accordion-header .accordion-button::after {
  content: "\f061";
  font-family: "Font Awesome 6 Pro";
  background: transparent;
  font-weight: 500;
  transition: all 0.3s ease-in-out !important;
  color: var(--header);
}
.service-right-item .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  content: "\f061";
  font-family: "Font Awesome 6 Pro";
  background: transparent;
  font-weight: 500;
  color: var(--theme);
  transform: rotate(-45deg);
}
.service-right-item .accordion-item .accordion-header .accordion-button.collapsed {
  background-color: var(--bg);
  padding: 25px 20px 5px;
  color: var(--header);
}
.service-right-item .accordion-item .accordion-collapse .accordion-body {
  padding-left: 50px;
  padding-top: 15px;
  color: var(--text);
  background-color: var(--bg);
  font-weight: 500;
  padding-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 1199px) {
  .service-right-item .accordion-item .accordion-collapse .accordion-body {
    flex-wrap: wrap;
    gap: 10px;
  }
}
@media (max-width: 1199px) {
  .service-right-item .accordion-item .accordion-collapse .accordion-body .thumb {
    flex-basis: 100%;
  }
}
@media (max-width: 1199px) {
  .service-right-item .accordion-item .accordion-collapse .accordion-body .thumb img {
    width: 100%;
    height: 100%;
  }
}
.service-right-item .accordion-item .accordion-collapse .accordion-body .content .service-button {
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .service-right-item .accordion-item .accordion-collapse .accordion-body {
    padding-left: 20px;
  }
}

.service-section-2 {
  position: relative;
  z-index: 9;
}
.service-section-2 .left-shape {
  position: absolute;
  left: -30px;
  bottom: 0;
  z-index: -1;
}
@media (max-width: 1199px) {
  .service-section-2 .left-shape {
    display: none;
  }
}

.service-main-box-item {
  border: 1px solid var(--border);
  margin-top: 30px;
}
.service-main-box-item .service-main-box {
  display: flex;
  align-items: center;
}
@media (max-width: 1199px) {
  .service-main-box-item .service-main-box {
    flex-wrap: wrap;
  }
}
.service-main-box-item .service-main-box .service-box-item {
  padding: 30px;
}
@media (max-width: 1199px) {
  .service-main-box-item .service-main-box .service-box-item {
    padding: 30px;
  }
}
.service-main-box-item .service-main-box .service-box-item.style-2 {
  border-right: 1px solid var(--border);
}
@media (max-width: 1199px) {
  .service-main-box-item .service-main-box .service-box-item.style-2 {
    border-right: none;
  }
}
.service-main-box-item .service-main-box .service-box-item .service-icon-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .service-main-box-item .service-main-box .service-box-item .service-icon-item {
    margin-bottom: 30px;
  }
}
.service-main-box-item .service-main-box .service-box-item .service-icon-item h3 {
  font-weight: 400;
  color: var(--text);
}
.service-main-box-item .service-main-box .service-box-item h3 {
  color: var(--text);
  margin-bottom: 40px;
}
@media (max-width: 1199px) {
  .service-main-box-item .service-main-box .service-box-item h3 {
    margin-bottom: 30px;
  }
}
.service-main-box-item .service-main-box .service-box-item h3 a span {
  font-weight: 400;
}
.service-main-box-item .service-main-box .service-box-item h3:hover {
  color: var(--theme);
}
.service-main-box-item .service-main-box .service-box-item p {
  max-width: 246px;
}
@media (max-width: 1199px) {
  .service-main-box-item .service-main-box .service-box-item p {
    max-width: initial;
  }
}
.service-main-box-item .service-main-box .service-box-item .link-btn {
  margin-top: 40px;
  display: inline-block;
}
.service-main-box-item .service-image img {
  width: 100%;
  height: 100%;
}

.service-box-item-2 {
  padding: 30px 27px;
  border: 1px solid var(--border);
  position: relative;
  z-index: 9;

  /* new additions below */
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-box-item-2 p {
  flex: 1;
  margin-bottom: 20px;
}

.service-box-item-2 .link-btn {
  margin-top: auto;
}
.service-box-item-2 {
  padding: 30px 27px;
  border: 1px solid var(--border);
  position: relative;
  z-index: 9;

  /* new additions below */
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-box-item-2 p {
  flex: 1;
  margin-bottom: 20px;
}

.service-box-item-2 .link-btn {
  margin-top: auto;
}
.service-box-item-2 .shape {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.service-box-item-2 .shape img {
  width: 100%;
  height: 100%;
}
.service-box-item-2 .shape-2 {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.service-box-item-2 .shape-2 img {
  width: 100%;
  height: 100%;
}
.service-box-item-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--header);
  transform: scaleX(0.7) rotateX(20deg);
  opacity: 0;
  transition: all 0.4s linear;
  z-index: -1;
}
.service-box-item-2 .service-icon-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}
.service-box-item-2 .service-icon-item h3 {
  font-weight: 400;
  color: var(--text);
  transition: all 0.4s ease-in-out;
}
.service-box-item-2 h3 {
  font-weight: 600;
  margin-bottom: 15px;
}
.service-box-item-2 h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.service-box-item-2 h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(#b20e20
, #b20e20
);
}
.service-box-item-2 p {
  max-width: 328px;
}
.service-box-item-2 .link-btn {
  margin-top: 40px;
  display: inline-block;
  color: var(--header);
}
.service-box-item-2 .link-btn i {
  color: var(--header);
  transition: all 0.4s ease-in-out;
}
.service-box-item-2 .link-btn:hover {
  color: var(--theme);
}
.service-box-item-2 .link-btn:hover i {
  color: var(--theme);
}
.service-box-item-2:hover::before {
  transform: scaleX(1) rotateX(0deg);
  transition: all 0.4s linear;
  opacity: 1;
}
.service-box-item-2:hover .service-icon-item .service-icon img {
  filter: brightness(0) invert(1);
}
.service-box-item-2:hover .service-icon-item h3 {
  color: var(--white);
}
.service-box-item-2:hover .shape {
  opacity: 0;
  visibility: hidden;
}
.service-box-item-2:hover .shape-2 {
  opacity: 1;
  visibility: visible;
}
.service-box-item-2:hover h3 a {
  color: var(--white);
}
.service-box-item-2:hover p {
  color: var(--white);
}
.service-box-item-2:hover .link-btn {
  color: var(--white);
}
.service-box-item-2:hover .link-btn i {
  color: var(--white);
}

.service-details-wrapper .service-details-post .service-details-image {
  margin-bottom: 40px;
}
.service-details-wrapper .service-details-post .service-details-image img {
  width: 100%;
  height: 100%;
}
.service-details-wrapper .service-details-post .service-details-content .side-list-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 60px;
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .service-details-wrapper .service-details-post .service-details-content .side-list-item {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.service-details-wrapper .service-details-post .service-details-content .side-list-item .list li:not(:last-child) {
  margin-bottom: 12px;
}
.service-details-wrapper .service-details-post .service-details-content .thumb img {
  width: 100%;
  height: 100%;
}
.service-details-wrapper .service-details-post .service-details-content .service-benefit-content h3 {
  margin-bottom: 10px;
}
.service-details-wrapper .service-details-post .service-details-content .service-benefit-content p {
  max-width: 375px;
}
.service-details-wrapper .service-details-post .service-details-content .service-benefit-content .details-list {
  margin-top: 15px;
}
.service-details-wrapper .service-details-post .service-details-content .service-benefit-content .details-list li {
  font-size: 18px;
}
.service-details-wrapper .service-details-post .service-details-content .service-benefit-content .details-list li i {
  color: var(--theme);
  margin-right: 5px;
}
.service-details-wrapper .service-details-post .service-details-content .service-benefit-content .details-list li:not(:last-child) {
  margin-bottom: 10px;
}
.service-details-wrapper .service-details-post .service-details-content .text-2 {
  margin-top: 60px;
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .service-details-wrapper .service-details-post .service-details-content .text-2 {
    margin-top: 30px;
  }
}
.service-details-wrapper .service-details-post .service-details-content .service-details-box-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
  margin-bottom: 40px;
}
@media (max-width: 1199px) {
  .service-details-wrapper .service-details-post .service-details-content .service-details-box-item {
    gap: 20px;
  }
}
@media (max-width: 991px) {
  .service-details-wrapper .service-details-post .service-details-content .service-details-box-item {
    flex-wrap: wrap;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.service-details-wrapper .service-details-post .service-details-content .service-details-box-item .service-details-box {
  background-color: var(--white);
  box-shadow: 0px 6px 30px 0px rgba(0, 0, 0, 0.07);
  padding: 20px;
  text-align: center;
  position: relative;
}
.service-details-wrapper .service-details-post .service-details-content .service-details-box-item .service-details-box .icon {
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  background-color: var(--theme);
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: -30px;
}
.service-details-wrapper .service-details-post .service-details-content .service-details-box-item .service-details-box h4 {
  margin-bottom: 10px;
}
.service-details-wrapper .service-details-post .service-details-content .service-details-box-item .service-details-box p {
  max-width: 201px;
}
.service-details-wrapper .main-sideber .service-sideber-widget {
  margin-bottom: 30px;
}
.service-details-wrapper .main-sideber .service-sideber-widget .service-widget-categories ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 400;
  background-color: var(--bg-3);
  transition: all 0.4s ease-in-out;
  border-radius: 0;
  line-height: 1;
  padding: 20px;
}
.service-details-wrapper .main-sideber .service-sideber-widget .service-widget-categories ul li a {
  color: var(--header);
}
.service-details-wrapper .main-sideber .service-sideber-widget .service-widget-categories ul li i {
  transition: all 0.4s ease-in-out;
  color: var(--header);
}
.service-details-wrapper .main-sideber .service-sideber-widget .service-widget-categories ul li:not(:last-child) {
  margin-bottom: 20px;
}
.service-details-wrapper .main-sideber .service-sideber-widget .service-widget-categories ul li:hover {
  background-color: var(--theme);
}
.service-details-wrapper .main-sideber .service-sideber-widget .service-widget-categories ul li:hover a {
  color: var(--white);
}
.service-details-wrapper .main-sideber .service-sideber-widget .service-widget-categories ul li:hover i {
  color: var(--white);
}
.service-details-wrapper .main-sideber .service-bg {
  padding: 40px;
  position: relative;
  z-index: 9;
}
@media (max-width: 1199px) {
  .service-details-wrapper .main-sideber .service-bg {
    padding: 30px;
  }
}
.service-details-wrapper .main-sideber .service-bg::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(14, 18, 29, 0.85);
  z-index: -1;
}
.service-details-wrapper .main-sideber .service-bg .content h4 {
  color: var(--white);
  margin-bottom: 20px;
}
.service-details-wrapper .main-sideber .service-bg .content h5 {
  font-size: 18px;
}
.service-details-wrapper .main-sideber .service-bg .content h5 a {
  color: var(--white);
}
.service-details-wrapper .main-sideber .service-bg .content .theme-btn {
  margin-top: 220px;
}
@media (max-width: 1199px) {
  .service-details-wrapper .main-sideber .service-bg .content .theme-btn {
    margin-top: 120px;
  }
}
@media (max-width: 575px) {
  .service-details-wrapper .main-sideber .service-bg .content .theme-btn {
    margin-top: 50px;
  }
}
.service-details-wrapper .main-sideber .brochure-button {
  margin-top: 40px;
  margin-bottom: 16px;
}
.service-details-wrapper .main-sideber .brochure-button .theme-btn {
  width: 100%;
  text-align: center;
}
.service-details-wrapper .main-sideber .download-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background-color: var(--bg-3);
}
.service-details-wrapper .main-sideber .download-button .down-btn {
  display: flex;
  align-items: center;
  gap: 16px;
}
.service-details-wrapper .main-sideber .download-button i {
  font-size: 20px;
  color: var(--theme);
}

.team-box-items {
  margin-top: 30px;
}
.team-box-items .team-image {
  position: relative;
  overflow: hidden;
}
.team-box-items .team-image .social-icon {
  display: grid;
  align-items: center;
  gap: 10px;
  position: absolute;
  transform: translateX(100%) perspective(120px) rotateY(-50deg) scaleY(0.5);
  bottom: 30px;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.team-box-items .team-image .social-icon a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  background-color: var(--white);
  text-align: center;
  color: var(--header);
}
.team-box-items .team-image .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
}
.team-box-items .team-image img {
  width: 100%;
  height: 100%;
}
.team-box-items .team-content {
  margin-top: 15px;
}
.team-box-items .team-content p {
  margin-bottom: 5px;
}
.team-box-items .team-content h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 141%;
}
@media (max-width: 575px) {
  .team-box-items .team-content h3 {
    font-size: 20px;
  }
}
.team-box-items .team-content h3 a:hover {
  color: var(--theme);
}
.team-box-items:hover .team-image .social-icon {
  opacity: 1;
  visibility: visible;
  transform: translateX(20px) translateY(-10px) scale(1.05) rotateZ(1deg);
}

.team-card-items {
  margin-top: 30px;
}
.team-card-items .team-image {
  position: relative;
}
.team-card-items .team-image .social-profile {
  position: absolute;
  left: 0;
  bottom: 10px;
  content: "";
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  z-index: 2;
  display: flex;
  overflow: hidden;
  align-items: center;
}
.team-card-items .team-image .social-profile ul {
  transform: translateX(-100px);
  transition: all 0.6s ease-in-out;
  opacity: 0;
  visibility: hidden;
  display: flex;
}
.team-card-items .team-image .social-profile ul li a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-left: 10px;
  display: inline-block;
  text-align: center;
  font-size: 14px;
  color: #4D5765;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
  background-color: var(--white);
}
.team-card-items .team-image .social-profile ul li a:hover {
  background-color: var(--theme);
  color: var(--white);
}
.team-card-items .team-image .social-profile .plus-btn {
  z-index: 2;
  cursor: pointer;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 14px;
  display: inline-block;
  background: var(--header);
  color: var(--white);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
}
.team-card-items .team-image .social-profile:hover ul {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.team-card-items .team-image {
  height: 320px;
  overflow: hidden;
  position: relative;
}

.team-card-items .team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 767px) {
  .team-card-items .team-image {
    height: 260px;
  }
}

@media (max-width: 480px) {
  .team-card-items .team-image {
    height: 260px;
      object-fit: fill;
  }
}
.team-card-items .team-content {
  margin-top: 15px;
}
.team-card-items .team-content p {
  margin-bottom: 5px;
}
.team-card-items .team-content h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 141%;
}
.team-card-items .team-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.team-card-items .team-content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(#b20e20
, #b20e20
);
}

.team-details-wrapper .team-author-items {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 40px;
  border: 1px solid var(--border);
}
@media (max-width: 1199px) {
  .team-details-wrapper .team-author-items {
    padding: 30px;
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .team-details-wrapper .team-author-items {
    flex-wrap: wrap;
  }
}
.team-details-wrapper .team-author-items .team-details-image img {
  width: 100%;
  height: 100%;
}
.team-details-wrapper .team-author-items .team-details-content h2 {
  font-size: 36px;
}
@media (max-width: 1199px) {
  .team-details-wrapper .team-author-items .team-details-content h2 {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .team-details-wrapper .team-author-items .team-details-content h2 {
    font-size: 25px;
  }
}
.team-details-wrapper .team-author-items .team-details-content p {
  max-width: 562px;
  margin-top: 15px;
}
.team-details-wrapper .team-author-items .team-details-content .contact-list {
  margin-top: 30px;
}
.team-details-wrapper .team-author-items .team-details-content .contact-list .contact-info {
  position: relative;
  font-size: 16px;
  font-weight: 600;
}
.team-details-wrapper .team-author-items .team-details-content .contact-list .contact-info:not(:last-child) {
  margin-bottom: 20px;
}
.team-details-wrapper .team-author-items .team-details-content .contact-list .contact-info span {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 18px;
  font-weight: 600;
  color: var(--header);
  text-transform: capitalize;
  font-family: "Exo", sans-serif;
}
@media (max-width: 575px) {
  .team-details-wrapper .team-author-items .team-details-content .contact-list .contact-info span {
    position: static;
  }
}
.team-details-wrapper .team-author-items .team-details-content .contact-list .contact-info a {
  margin-left: 180px;
  font-size: 16px;
  color: var(--text);
  text-transform: capitalize;
  font-weight: 400;
}
@media (max-width: 575px) {
  .team-details-wrapper .team-author-items .team-details-content .contact-list .contact-info a {
    margin-left: 0;
  }
}
.team-details-wrapper .team-author-items .team-details-content .social-icon {
  gap: 15px;
  margin-top: 40px;
}
.team-details-wrapper .team-author-items .team-details-content .social-icon a {
  display: inline-block;
  width: 46px;
  height: 46px;
  line-height: 46px;
  border-radius: 100px;
  text-align: center;
  background: var(--bg-3);
  color: var(--header);
  transition: all 0.4s ease-in-out;
}
.team-details-wrapper .team-author-items .team-details-content .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
}
.team-details-wrapper .details-info-items {
  margin-top: 60px;
}
@media (max-width: 1199px) {
  .team-details-wrapper .details-info-items {
    margin-top: 30px;
  }
}
.team-details-wrapper .details-info-items .info-content .text {
  margin-bottom: 20px;
  font-size: 30px;
}
.team-details-wrapper .details-info-items .progress-area {
  margin-left: 20px;
}
@media (max-width: 1199px) {
  .team-details-wrapper .details-info-items .progress-area {
    margin-left: 0;
  }
}
.team-details-wrapper .details-info-items .progress-area .text {
  margin-bottom: 20px;
  font-size: 30px;
}
.team-details-wrapper .details-info-items .progress-area p {
  max-width: 590px;
  margin-bottom: 20px;
}
.team-details-wrapper .details-info-items .progress-area .progress-wrap .pro-items {
  width: 100%;
}
.team-details-wrapper .details-info-items .progress-area .progress-wrap .pro-items:not(:last-child) {
  margin-bottom: 20px;
}
.team-details-wrapper .details-info-items .progress-area .progress-wrap .pro-items .pro-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.team-details-wrapper .details-info-items .progress-area .progress-wrap .pro-items .pro-head .title {
  font-size: 18px;
  font-weight: 600;
}
.team-details-wrapper .details-info-items .progress-area .progress-wrap .pro-items .pro-head .point {
  font-size: 18px;
  font-weight: 600;
  color: var(--header);
}
.team-details-wrapper .details-info-items .progress-area .progress-wrap .pro-items .progress {
  background: #E4E4E4;
  justify-content: flex-start;
  border-radius: 4px;
  align-items: center;
  position: relative;
  display: flex;
  height: 8px;
  width: 100%;
}
.team-details-wrapper .details-info-items .progress-area .progress-wrap .pro-items .progress-value {
  animation: load 3s normal forwards;
  border-radius: 0;
  background: var(--theme);
  height: 10px;
  width: 0;
}
.team-details-wrapper .details-info-items .progress-area .progress-wrap .pro-items .style-two {
  animation: load2 3s normal forwards;
}
.team-details-wrapper .details-info-items .progress-area .progress-wrap .pro-items .style-three {
  animation: load3 3s normal forwards;
}
@keyframes load {
  0% {
    width: 0;
  }
  100% {
    width: 90%;
  }
}
@keyframes load2 {
  0% {
    width: 0;
  }
  100% {
    width: 70%;
  }
}
@keyframes load3 {
  0% {
    width: 0;
  }
  100% {
    width: 55%;
  }
}






/* =========================================================
   ARSHA PREMIUM MINI NAVBAR
========================================================= */

.arsha-mini-navbar {

    position: relative;

    width: 100%;

    background: #0d0f11;

    color: #ffffff;

    border-bottom: 1px solid rgba(255, 255, 255, 0.07);

    overflow: hidden;

    z-index: 1000;
}


/* =========================================================
   SUBTLE TOP LINE
========================================================= */

.arsha-mini-navbar::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(175, 0, 6, 0.8),
        transparent
    );

    opacity: 0.8;
}


/* =========================================================
   CONTAINER
========================================================= */

.arsha-mini-container {

    width: min(1400px, calc(100% - 100px));

    min-height: 45px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.arsha-mini-left {

    display: flex;

    align-items: center;

    gap: 28px;

    min-width: 0;
}


/* =========================================================
   GENERAL INFORMATION
========================================================= */

.arsha-mini-info {

    display: flex;

    align-items: center;

    gap: 10px;

    min-width: 0;

    color: #cecfd1;

    text-decoration: none;
}


/* =========================================================
   ICON
========================================================= */

.arsha-mini-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 31px;
    height: 31px;

    flex-shrink: 0;

    color: #c00007;

    background: rgba(175, 0, 6, 0.08);

    border: 1px solid rgba(175, 0, 6, 0.18);

    border-radius: 50%;

    font-size: 12px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.arsha-mini-info:hover .arsha-mini-icon {

    color: #ffffff;

    background: #af0006;

    transform: translateY(-2px);
}


/* =========================================================
   TEXT
========================================================= */

.arsha-mini-text {

    color: #babbbd;

    font-size: 13px;

    line-height: 1.4;

    white-space: nowrap;

    transition: color 0.3s ease;
}


.arsha-mini-info:hover .arsha-mini-text {

    color: #ffffff;
}


/* =========================================================
   PHONE PILL
========================================================= */

.arsha-mini-phone {

    position: relative;

    display: flex;

    align-items: center;

    gap: 11px;

    padding: 5px 12px 5px 6px;

    color: #ffffff;

    background: rgba(175, 0, 6, 0.10);

    border: 1px solid rgba(175, 0, 6, 0.25);

    border-radius: 40px;

    text-decoration: none;

    overflow: visible;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}


.arsha-mini-phone:hover {

    color: #ffffff;

    background: rgba(175, 0, 6, 0.18);

    border-color: rgba(175, 0, 6, 0.5);

    transform: translateY(-2px);
}


/* =========================================================
   PHONE CIRCLE
========================================================= */

.arsha-phone-icon {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 26px;
    height: 26px;

    flex-shrink: 0;

    color: #ffffff;

    background: #8f0005;

    border-radius: 50%;

    font-size: 12px;
}


/* =========================================================
   REALISTIC "BRRR-BRRR" PHONE SHAKE
========================================================= */

.arsha-phone-icon i {

    display: inline-block;

    animation: arsha-real-phone-ring 0.9s infinite;

    transform-origin: center;
}


@keyframes arsha-real-phone-ring {

    0% {
        transform: rotate(0deg);
    }

    8% {
        transform: rotate(-22deg);
    }

    16% {
        transform: rotate(22deg);
    }

    24% {
        transform: rotate(-20deg);
    }

    32% {
        transform: rotate(20deg);
    }

    40% {
        transform: rotate(-14deg);
    }

    48% {
        transform: rotate(14deg);
    }

    56% {
        transform: rotate(-8deg);
    }

    64% {
        transform: rotate(8deg);
    }

    72% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(0deg);
    }
}


/* =========================================================
   PHONE VIBRATION WAVES
========================================================= */

.arsha-phone-icon::before,
.arsha-phone-icon::after {

    content: "";

    position: absolute;

    inset: -5px;

    border: 1px solid rgba(175, 0, 6, 0.35);

    border-radius: 50%;

    animation: arsha-phone-wave 1.5s infinite;
}


.arsha-phone-icon::after {

    animation-delay: 0.75s;
}


@keyframes arsha-phone-wave {

    0% {

        opacity: 0.7;

        transform: scale(0.85);
    }

    70% {

        opacity: 0;

        transform: scale(1.55);
    }

    100% {

        opacity: 0;

        transform: scale(1.55);
    }
}


/* =========================================================
   PHONE CONTENT
========================================================= */

.arsha-phone-content {

    display: flex;

    flex-direction: column;

    gap: 1px;
}


.arsha-phone-content strong {

    color: #ffffff;

    font-size: 13px;

    font-weight: 600;

    line-height: 1.3;

    white-space: nowrap;
}


/* =========================================================
   RIGHT SIDE
========================================================= */

.arsha-mini-right {

    display: flex;

    align-items: center;

    gap: 13px;

    flex-shrink: 0;
}


/* =========================================================
   FOLLOW US
========================================================= */

.arsha-follow-text {

    color: #a4a8ad;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 1.3px;

    text-transform: uppercase;
}


/* =========================================================
   SOCIAL
========================================================= */

.arsha-mini-social {

    display: flex;

    align-items: center;

    gap: 7px;
}


.arsha-mini-social a {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 31px;
    height: 31px;

    color: #9b9ea3;

    background: rgba(255, 255, 255, 0.025);

    border: 1px solid rgba(255, 255, 255, 0.07);

    border-radius: 50%;

    font-size: 11px;

    text-decoration: none;

    transition:
        color 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}


.arsha-mini-social a:hover {

    color: #ffffff;

    background: #af0006;

    border-color: #af0006; 

    transform: translateY(-3px);
}


/* =========================================================
   HIDE MINI NAVBAR ON TABLET & MOBILE
========================================================= */

@media (max-width: 1100px) {

    .arsha-mini-navbar {

        display: none !important;

    }

}








/* =========================================================
   ARSHA INFRASTRUCTURE
   PREMIUM MODERN FOOTER
========================================================= */

.arsha-footer {

    --footer-bg: #101214;
    --footer-bg-soft: #15181b;
    --footer-text: #ffffff;
    --footer-muted: #a8acb1;
    --footer-red: #af0006;
    --footer-red-light: #d00008;
    --footer-border: rgba(255, 255, 255, 0.09);

    position: relative;

    width: 100%;

    background: var(--footer-bg);

    color: var(--footer-text);

    overflow: hidden;
}


/* =========================================================
   SUBTLE DECORATIVE BACKGROUND
========================================================= */

.arsha-footer::before {

    content: "";

    position: absolute;

    top: -180px;
    right: -160px;

    width: 480px;
    height: 480px;

    background: rgba(175, 0, 6, 0.07);

    border-radius: 50%;

    filter: blur(100px);

    pointer-events: none;
}


.arsha-footer::after {

    content: "";

    position: absolute;

    bottom: -200px;
    left: -180px;

    width: 450px;
    height: 450px;

    background: rgba(175, 0, 6, 0.035);

    border-radius: 50%;

    filter: blur(100px);

    pointer-events: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.arsha-footer-container {

    position: relative;

    z-index: 2;

    width: min(1400px, calc(100% - 100px));

    margin: 0 auto;
}


/* =========================================================
   MAIN FOOTER
========================================================= */

.arsha-footer-main {

    position: relative;

    padding: 85px 0 78px;
}


/* =========================================================
   FOOTER GRID
========================================================= */

.arsha-footer-grid {

    display: grid;

    grid-template-columns:
        1.45fr
        0.75fr
        1fr
        1.3fr;

    gap: 65px;
}


/* =========================================================
   COMPANY / BRAND
========================================================= */

.arsha-footer-brand {

    max-width: 430px;
}


.arsha-footer-logo {

    display: inline-block;

    margin-bottom: 28px;
}


.arsha-footer-logo img {

    display: block;

    width: 155px;

    height: auto;
}


.arsha-footer-description {

    max-width: 410px;

    margin: 0 0 30px;

    color: var(--footer-muted);

    font-size: 16px;

    line-height: 1.85;
}


/* =========================================================
   SOCIAL MEDIA
========================================================= */

.arsha-footer-social {

    display: flex;

    align-items: center;

    gap: 11px;
}


.arsha-footer-social a {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 46px;
    height: 46px;

    color: #ffffff;

    background: rgba(255, 255, 255, 0.035);

    border: 1px solid var(--footer-border);

    border-radius: 50%;

    font-size: 15px;

    text-decoration: none;

    overflow: hidden;

    transition:
        color 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}


.arsha-footer-social a:hover {

    color: #ffffff;

    background: var(--footer-red);

    border-color: var(--footer-red);

    transform: translateY(-4px);
}


/* =========================================================
   COLUMN TITLE
========================================================= */

.arsha-footer-column-title {

    position: relative;

    margin: 0 0 30px;

    padding-bottom: 15px;

    color: #ffffff;

    font-size: 16px;

    font-weight: 700;

    letter-spacing: 1.4px;

    text-transform: uppercase;
}


.arsha-footer-column-title::after {

    content: "";

    position: absolute;

    bottom: 0;
    left: 0;

    width: 34px;

    height: 2px;

    background: var(--footer-red);
}


/* =========================================================
   NAVIGATION
========================================================= */

.arsha-footer-nav {

    display: flex;

    flex-direction: column;

    gap: 16px;
}


.arsha-footer-nav a {

    position: relative;

    width: fit-content;

    color: var(--footer-muted);

    font-size: 15px;

    line-height: 1.5;

    text-decoration: none;

    transition:
        color 0.3s ease,
        padding-left 0.3s ease;
}


.arsha-footer-nav a::before {

    content: "";

    position: absolute;

    left: 0;
    top: 50%;

    width: 0;

    height: 1px;

    background: var(--footer-red);

    transform: translateY(-50%);

    transition: width 0.3s ease;
}


.arsha-footer-nav a:hover {

    color: #ffffff;

    padding-left: 11px;
}


.arsha-footer-nav a:hover::before {

    width: 5px;
}


/* =========================================================
   CONTACT
========================================================= */

.arsha-footer-contact {

    display: flex;

    flex-direction: column;

    gap: 24px;
}


.arsha-footer-contact-item {

    display: flex;

    align-items: flex-start;

    gap: 14px;
}


/* =========================================================
   CONTACT ICON
========================================================= */

.arsha-footer-contact-icon {

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 44px;
    height: 44px;

    color: var(--footer-red-light);

    background: rgba(175, 0, 6, 0.08);

    border: 1px solid rgba(175, 0, 6, 0.25);

    border-radius: 50%;

    font-size: 14px;

    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}


.arsha-footer-contact-item:hover
.arsha-footer-contact-icon {

    color: #ffffff;

    background: var(--footer-red);

    transform: translateY(-2px);
}


/* =========================================================
   CONTACT CONTENT
========================================================= */

.arsha-footer-contact-content {

    display: flex;

    flex-direction: column;

    gap: 4px;

    min-width: 0;
}


.arsha-footer-contact-label {

    margin-bottom: 3px;

    color: #ffffff;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


.arsha-footer-contact-content a,
.arsha-footer-contact-content span {

    color: var(--footer-muted);

    font-size: 15px;

    line-height: 1.65;

    text-decoration: none;

    transition: color 0.3s ease;
}


.arsha-footer-contact-content a:hover {

    color: var(--footer-red-light);
}


/* =========================================================
   BOTTOM BAR
========================================================= */

.arsha-footer-bottom {

    position: relative;

    z-index: 3;

    padding: 25px 0;

    background: rgba(0, 0, 0, 0.18);

    border-top: 1px solid var(--footer-border);
}


.arsha-footer-bottom-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


/* =========================================================
   COPYRIGHT
========================================================= */

.arsha-footer-copyright {

    margin: 0;

    color: #7e8287;

    font-size: 13px;

    line-height: 1.6;
}


.arsha-footer-copyright strong {

    color: #ffffff;

    font-weight: 600;
}


/* =========================================================
   BOTTOM LINKS
========================================================= */

.arsha-footer-bottom-right {

    display: flex;

    align-items: center;

    gap: 18px;
}


.arsha-footer-bottom-right a {

    color: #7e8287;

    font-size: 13px;

    text-decoration: none;

    transition: color 0.3s ease;
}


.arsha-footer-bottom-right a:hover {

    color: #ffffff;
}


.footer-divider {

    width: 4px;

    height: 4px;

    background: var(--footer-red);

    border-radius: 50%;
}


/* =========================================================
   LARGE LAPTOP
========================================================= */

@media (max-width: 1199px) {

    .arsha-footer-container {

        width: calc(100% - 70px);
    }


    .arsha-footer-grid {

        grid-template-columns:
            1.35fr
            0.8fr
            1fr;

        gap: 55px;
    }


    .arsha-footer-brand {

        grid-row: span 2;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .arsha-footer-container {

        width: calc(100% - 50px);
    }


    .arsha-footer-main {

        padding: 70px 0;
    }


    .arsha-footer-grid {

        grid-template-columns: 1fr 1fr;

        gap: 55px 45px;
    }


    .arsha-footer-brand {

        grid-column: span 2;

        grid-row: auto;

        max-width: 650px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .arsha-footer-container {

        width: calc(100% - 32px);
    }


    .arsha-footer-main {

        padding: 58px 0 55px;
    }


    .arsha-footer-grid {

        grid-template-columns: 1fr;

        gap: 45px;
    }


    .arsha-footer-brand {

        grid-column: span 1;

        max-width: 100%;
    }


    .arsha-footer-logo {

        margin-bottom: 22px;
    }


    .arsha-footer-logo img {

        width: 140px;
    }


    .arsha-footer-description {

        font-size: 15px;

        line-height: 1.8;
    }


    .arsha-footer-social a {

        width: 44px;
        height: 44px;
    }


    .arsha-footer-column-title {

        font-size: 15px;

        margin-bottom: 25px;
    }


    .arsha-footer-nav {

        gap: 14px;
    }


    .arsha-footer-nav a {

        font-size: 15px;
    }


    .arsha-footer-contact-content a,
    .arsha-footer-contact-content span {

        font-size: 15px;
    }


    .arsha-footer-bottom {

        padding: 22px 0;
    }


    .arsha-footer-bottom-inner {

        align-items: flex-start;

        flex-direction: column;

        gap: 13px;
    }


    .arsha-footer-bottom-right {

        flex-wrap: wrap;

        gap: 14px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .arsha-footer-container {

        width: calc(100% - 26px);
    }


    .arsha-footer-logo img {

        width: 130px;
    }


    .arsha-footer-description {

        font-size: 14px;
    }

}






/* =========================================================
   ARSHA PREMIUM SERVICE DETAILS
========================================================= */

.arsha-service-details {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: #f7f8fa;
    font-family: inherit;
}

.arsha-service-details .container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   SERVICE HERO
========================================================= */

.service-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
    padding: 55px;
    background: #ffffff;
    border: 1px solid #e9eaed;
    border-radius: 30px;
    box-shadow: 0 25px 70px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.service-hero-content {
    max-width: 650px;
}

.service-tag {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 17px;
    margin-bottom: 22px;
    border-radius: 50px;
    background: rgba(178, 14, 32, 0.08);
    color: #b20e20;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.service-tag i {
    font-size: 13px;
}

.service-hero-content h2 {
    margin: 0 0 22px;
    color: #111827;
    font-size: 52px;
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.service-hero-content > p {
    margin: 0;
    color: #667085;
    font-size: 17px;
    line-height: 1.9;
}


/* Hero Meta */

.service-hero-meta {
    display: flex;
    align-items: center;
    gap: 35px;
    margin-top: 35px;
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.meta-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 12px;
    background: #b20e20;
    color: #ffffff;
    font-size: 16px;
    box-shadow: 0 8px 20px rgba(178, 14, 32, 0.2);
}

.hero-meta-item strong {
    display: block;
    margin-bottom: 2px;
    color: #1b1f2a;
    font-size: 16px;
    font-weight: 700;
}

.hero-meta-item small {
    display: block;
    color: #8a909b;
    font-size: 14px;
}


/* Hero Image */

.service-hero-image {
    position: relative;
    min-height: 500px;
    border-radius: 24px;
    overflow: hidden;
}

.service-hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 45%,
        rgba(0, 0, 0, 0.45) 100%
    );
    pointer-events: none;
}

.service-hero-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    display: block;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.service-hero:hover .service-hero-image img {
    transform: scale(1.04);
}


/* Hero Image Badge */

.hero-image-badge {
    position: absolute;
    left: 25px;
    bottom: 25px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 13px;
    max-width: calc(100% - 50px);
    padding: 15px 18px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.badge-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 11px;
    background: #b20e20;
    color: #ffffff;
}

.hero-image-badge strong {
    display: block;
    color: #171a21;
    font-size: 17px;
    font-weight: 700;
}

.hero-image-badge > div > span {
    display: block;
    margin-top: 3px;
    color: #727987;
    font-size: 14px;
}


/* =========================================================
   INTRO
========================================================= */

.service-intro {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    max-width: 900px;
    margin: 70px auto 90px;
}

.intro-line {
    width: 4px;
    min-width: 4px;
    min-height: 85px;
    border-radius: 10px;
    background: #b20e20;
}

.service-intro p {
    margin: 0;
    color: #667085;
    font-size: 18px;
    line-height: 1.9;
}


/* =========================================================
   SECTION HEADINGS
========================================================= */

.section-heading,
.process-heading {
    max-width: 680px;
    margin-bottom: 40px;
}

.mini-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 13px;
    color: #b20e20;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.mini-title i {
    font-size: 12px;
}

.section-heading h3,
.process-heading h3 {
    margin: 0 0 13px;
    color: #161a22;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.8px;
}

.section-heading p,
.process-heading p {
    margin: 0;
    color: #747b88;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   OFFER CARDS
========================================================= */

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

.offer-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e8e9ed;
    border-radius: 22px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.offer-card:hover {
    transform: translateY(-10px);
    border-color: rgba(178, 14, 32, 0.2);
    box-shadow: 0 25px 55px rgba(15, 23, 42, 0.11);
}


/* Offer Image */

.offer-image {
    position: relative;
    height: 245px;
    overflow: hidden;
}

.offer-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 45%,
        rgba(0, 0, 0, 0.35) 100%
    );
}

.offer-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.offer-card:hover .offer-image img {
    transform: scale(1.08);
}

.offer-number {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.35);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    backdrop-filter: blur(8px);
}


/* Offer Content */

.offer-content {
    position: relative;
    padding: 25px;
}

.offer-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -50px;
    margin-bottom: 18px;
    position: relative;
    z-index: 3;
    border: 4px solid #ffffff;
    border-radius: 15px;
    background: #b20e20;
    color: #ffffff;
    font-size: 18px;
    box-shadow: 0 8px 20px rgba(178, 14, 32, 0.22);
}

.offer-content h4 {
    margin: 0 0 10px;
    color: #171a21;
    font-size: 22px;
    font-weight: 750;
}

.offer-content p {
    min-height: 75px;
    margin: 0 0 20px;
    color: #747b88;
    font-size: 16px;
    line-height: 1.75;
}


/* =========================================================
   WHY ARSHA
========================================================= */

.why-arsha {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 75px;
    align-items: center;
    margin: 110px 0;
}

.why-image {
    position: relative;
    min-height: 620px;
    border-radius: 26px;
}

.why-image::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    left: -20px;
    bottom: -20px;
    border: 2px solid rgba(178, 14, 32, 0.25);
    border-radius: 20px;
}

.why-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 620px;
    display: block;
    object-fit: cover;
    border-radius: 26px;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.14);
}


/* Experience Card */

.experience-card {
    position: absolute;
    z-index: 3;
    right: -25px;
    bottom: 40px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 17px 20px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.15);
    backdrop-filter: blur(12px);
}

.experience-card > i {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #b20e20;
    color: #ffffff;
}

.experience-card strong {
    display: block;
    color: #171a21;
    font-size: 13px;
}

.experience-card span {
    display: block;
    margin-top: 3px;
    color: #818895;
    font-size: 11px;
}


/* Why Content */

.why-content h3 {
    margin: 0 0 18px;
    color: #171a21;
    font-size: 42px;
    line-height: 1.18;
    font-weight: 800;
    letter-spacing: -1px;
}

.why-content h3 span {
    color: #b20e20;
}

.why-content > p {
    max-width: 600px;
    margin: 0 0 35px;
    color: #737a87;
    font-size: 16px;
    line-height: 1.85;
}


/* Benefit List */

.benefit-list {
    display: grid;
    gap: 19px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px 0;
    border-bottom: 1px solid #e7e8eb;
}

.benefit-item:last-child {
    border-bottom: 0;
}

.benefit-icon {
    width: 47px;
    height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 13px;
    background: rgba(178, 14, 32, 0.08);
    color: #b20e20;
    font-size: 17px;
}

.benefit-item h4 {
    margin: 0 0 5px;
    color: #1b1f28;
    font-size: 18px;
    font-weight: 750;
}

.benefit-item p {
    margin: 0;
    color: #7c838f;
    font-size: 15px;
    line-height: 1.65;
}


/* =========================================================
   PROCESS
========================================================= */

.service-process {
    padding: 70px 55px;
    border: 1px solid #e7e8ec;
    border-radius: 28px;
    background: #ffffff;
}

.process-heading {
    max-width: 600px;
}

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

.process-card {
    position: relative;
    padding: 28px;
    border: 1px solid #e7e8ec;
    border-radius: 19px;
    background: #fafbfc;
    overflow: hidden;
    transition: all 0.35s ease;
}

.process-card:hover,
.process-card.active {
    border-color: rgba(178, 14, 32, 0.25);
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    transform: translateY(-5px);
}

.process-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.process-number {
    color: #b20e20;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
}

.process-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(178, 14, 32, 0.08);
    color: #b20e20;
    font-size: 17px;
    transition: all 0.3s ease;
}

.process-card:hover .process-icon,
.process-card.active .process-icon {
    background: #b20e20;
    color: #ffffff;
}

.process-card h4 {
    margin: 0 0 10px;
    color: #181c24;
    font-size: 22px;
    font-weight: 750;
}

.process-card > p {
    margin: 0;
    color: #767d89;
    font-size: 15px;
    line-height: 1.75;
}

.process-line {
    width: 45px;
    height: 3px;
    margin-top: 25px;
    border-radius: 10px;
    background: #b20e20;
}


/* =========================================================
   BOTTOM CTA
========================================================= */

.service-bottom {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    margin-top: 70px;
    padding: 35px 40px;
    border: 1px solid rgba(178, 14, 32, 0.15);
    border-radius: 22px;
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #fff7f8 100%
    );
    overflow: hidden;
}

.service-bottom::after {
    content: "";
    position: absolute;
    right: -60px;
    top: -100px;
    width: 220px;
    height: 220px;
    border: 35px solid rgba(178, 14, 32, 0.04);
    border-radius: 50%;
}

.bottom-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 17px;
}

.bottom-icon {
    width: 57px;
    height: 57px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 16px;
    background: #b20e20;
    color: #ffffff;
    font-size: 21px;
    box-shadow: 0 10px 25px rgba(178, 14, 32, 0.2);
}

.bottom-content h3 {
    margin: 0 0 5px;
    color: #171a21;
    font-size: 22px;
    font-weight: 800;
}

.bottom-content p {
    max-width: 700px;
    margin: 0;
    color: #737a87;
    font-size: 15px;
    line-height: 1.7;
}

.service-btn {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    flex-shrink: 0;
    padding: 15px 23px;
    border-radius: 12px;
    background: #b20e20;
    color: #ffffff;
    font-size: 13px;
    font-weight: 750;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(178, 14, 32, 0.2);
    transition: all 0.3s ease;
}

.service-btn:hover {
    background: #920b1a;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(178, 14, 32, 0.25);
}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1199px) {

    .service-hero {
        gap: 40px;
        padding: 40px;
    }

    .service-hero-content h2 {
        font-size: 44px;
    }

    .why-arsha {
        gap: 45px;
    }

    .why-content h3 {
        font-size: 36px;
    }

    .service-process {
        padding: 50px 35px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .arsha-service-details {
        padding: 80px 0;
    }

    .service-hero {
        grid-template-columns: 1fr;
    }

    .service-hero-content {
        max-width: 100%;
    }

    .service-hero-image {
        min-height: 450px;
    }

    .service-hero-image img {
        min-height: 450px;
    }

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

    .offer-card:last-child {
        grid-column: span 2;
        max-width: calc(50% - 12px);
        width: 100%;
        margin: 0 auto;
    }

    .why-arsha {
        grid-template-columns: 1fr;
    }

    .why-image {
        max-width: 700px;
        width: 100%;
        margin: 0 auto;
    }

    .why-content {
        max-width: 750px;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .service-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .arsha-service-details {
        padding: 60px 0;
    }

    .service-hero {
        gap: 30px;
        padding: 25px;
        border-radius: 22px;
    }

    .service-hero-content h2 {
        font-size: 34px;
        letter-spacing: -0.7px;
    }

    .service-hero-content > p {
        font-size: 15px;
        line-height: 1.8;
    }

    .service-hero-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 17px;
    }

    .service-hero-image {
        min-height: 350px;
        border-radius: 18px;
    }

    .service-hero-image img {
        min-height: 350px;
    }

    .hero-image-badge {
        left: 15px;
        right: 15px;
        bottom: 15px;
        max-width: none;
    }

    .service-intro {
        margin: 55px auto 65px;
    }

    .service-intro p {
        font-size: 16px;
        line-height: 1.8;
    }

    .section-heading h3,
    .process-heading h3 {
        font-size: 30px;
    }

    .offer-grid {
        grid-template-columns: 1fr;
    }

    .offer-card:last-child {
        grid-column: auto;
        max-width: 100%;
        margin: 0;
    }

    .offer-image {
        height: 220px;
    }

    .why-arsha {
        margin: 75px 0;
        gap: 45px;
    }

    .why-image {
        min-height: 450px;
    }

    .why-image img {
        height: 450px;
    }

    .experience-card {
        right: 15px;
        bottom: 20px;
    }

    .why-content h3 {
        font-size: 31px;
    }

    .service-process {
        padding: 35px 22px;
        border-radius: 22px;
    }

    .process-card {
        padding: 23px;
    }

    .service-bottom {
        margin-top: 50px;
        padding: 27px 22px;
    }

    .bottom-content {
        align-items: flex-start;
    }

    .bottom-content h3 {
        font-size: 18px;
    }

    .bottom-content p {
        font-size: 13px;
    }

    .service-btn {
        width: 100%;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .service-hero {
        padding: 20px;
    }

    .service-hero-content h2 {
        font-size: 30px;
    }

    .service-tag {
        font-size: 11px;
    }

    .service-hero-image,
    .service-hero-image img {
        min-height: 300px;
    }

    .hero-image-badge {
        padding: 12px;
    }

    .badge-icon {
        width: 38px;
        height: 38px;
    }

    .offer-content {
        padding: 22px;
    }

    .why-image {
        min-height: 380px;
    }

    .why-image img {
        height: 380px;
    }

    .experience-card {
        left: 15px;
        right: 15px;
        bottom: 15px;
    }

    .why-content h3 {
        font-size: 28px;
    }

    .benefit-item {
        gap: 12px;
    }

    .benefit-icon {
        width: 42px;
        height: 42px;
    }

    .bottom-content {
        flex-direction: column;
    }

}




/* =========================================================
   ARSHA INFRASTRUCTURE PREMIUM SECTION
========================================================= */

.arsha-infrastructure-details {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: #f7f8fa;
    font-family: inherit;
}

.arsha-infrastructure-details .container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   HERO
========================================================= */

.infrastructure-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
    padding: 55px;
    background: #ffffff;
    border: 1px solid #e8e9ed;
    border-radius: 30px;
    box-shadow: 0 25px 70px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.infrastructure-hero-content {
    max-width: 650px;
}

.infrastructure-tag {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 17px;
    margin-bottom: 22px;
    border-radius: 50px;
    background: rgba(178, 14, 32, 0.08);
    color: #b20e20;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.infrastructure-hero-content h2 {
    margin: 0 0 22px;
    color: #111827;
    font-size: 52px;
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.infrastructure-hero-content > p {
    margin: 0;
    color: #667085;
    font-size: 17px;
    line-height: 1.9;
}


/* Hero Meta */

.infrastructure-meta {
    display: flex;
    align-items: center;
    gap: 35px;
    margin-top: 35px;
}

.infrastructure-meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.infrastructure-meta-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 12px;
    background: #b20e20;
    color: #ffffff;
    font-size: 16px;
    box-shadow: 0 8px 20px rgba(178, 14, 32, 0.2);
}

.infrastructure-meta-item strong {
    display: block;
    margin-bottom: 2px;
    color: #1b1f2a;
    font-size: 16px;
    font-weight: 700;
}


/* Hero Image */

.infrastructure-hero-image {
    position: relative;
    min-height: 500px;
    border-radius: 24px;
    overflow: hidden;
}

.infrastructure-hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 45%,
        rgba(0, 0, 0, 0.48) 100%
    );
    pointer-events: none;
}

.infrastructure-hero-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    display: block;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.infrastructure-hero:hover .infrastructure-hero-image img {
    transform: scale(1.04);
}


/* Hero Badge */

.infrastructure-image-badge {
    position: absolute;
    left: 25px;
    bottom: 25px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 13px;
    max-width: calc(100% - 50px);
    padding: 15px 18px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.infrastructure-badge-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 11px;
    background: #b20e20;
    color: #ffffff;
}

.infrastructure-image-badge strong {
    display: block;
    color: #171a21;
    font-size: 16px;
    font-weight: 700;
}

.infrastructure-image-badge > div > span {
    display: block;
    margin-top: 3px;
    color: #727987;
    font-size: 13px;
}


/* =========================================================
   INTRO
========================================================= */

.infrastructure-intro {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    max-width: 900px;
    margin: 70px auto 90px;
}

.infrastructure-intro-line {
    width: 4px;
    min-width: 4px;
    min-height: 85px;
    border-radius: 10px;
    background: #b20e20;
}

.infrastructure-intro p {
    margin: 0;
    color: #667085;
    font-size: 18px;
    line-height: 1.9;
}


/* =========================================================
   SECTION HEADINGS
========================================================= */

.infrastructure-section-heading,
.infrastructure-process-heading {
    max-width: 680px;
    margin-bottom: 40px;
}

.infrastructure-mini-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 13px;
    color: #b20e20;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.infrastructure-section-heading h3,
.infrastructure-process-heading h3 {
    margin: 0 0 13px;
    color: #161a22;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.8px;
}

.infrastructure-section-heading p,
.infrastructure-process-heading p {
    margin: 0;
    color: #747b88;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   INFRASTRUCTURE SERVICE CARDS
========================================================= */

.infrastructure-offer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.infrastructure-offer-card {
    position: relative;
    display: grid;
    grid-template-columns: 42% 58%;
    background: #ffffff;
    border: 1px solid #e8e9ed;
    border-radius: 22px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.infrastructure-offer-card:hover {
    transform: translateY(-8px);
    border-color: rgba(178, 14, 32, 0.2);
    box-shadow: 0 25px 55px rgba(15, 23, 42, 0.11);
}


/* Card Image */

.infrastructure-offer-image {
    position: relative;
    min-height: 290px;
    overflow: hidden;
}

.infrastructure-offer-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 40%,
        rgba(0, 0, 0, 0.4) 100%
    );
}

.infrastructure-offer-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.infrastructure-offer-card:hover .infrastructure-offer-image img {
    transform: scale(1.08);
}

.infrastructure-offer-number {
    position: absolute;
    top: 17px;
    left: 17px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.35);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    backdrop-filter: blur(8px);
}


/* Card Content */

.infrastructure-offer-content {
    position: relative;
    padding: 27px 25px;
}

.infrastructure-offer-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 14px;
    background: rgba(178, 14, 32, 0.08);
    color: #b20e20;
    font-size: 18px;
    transition: all 0.35s ease;
}

.infrastructure-offer-card:hover .infrastructure-offer-icon {
    background: #b20e20;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(178, 14, 32, 0.2);
}

.infrastructure-offer-content h4 {
    margin: 0 0 10px;
    color: #171a21;
    font-size: 22px;
    line-height: 1.4;
    font-weight: 750;
}

.infrastructure-offer-content p {
    min-height: 82px;
    margin: 0 0 18px;
    color: #747b88;
    font-size: 15px;
    line-height: 1.75;
}

.infrastructure-offer-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #b20e20;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.infrastructure-offer-link:hover {
    gap: 14px;
    color: #8d0a18;
}


/* =========================================================
   WHY ARSHA
========================================================= */

.infrastructure-why {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 75px;
    align-items: center;
    margin: 110px 0;
}

.infrastructure-why-image {
    position: relative;
    min-height: 620px;
}

.infrastructure-why-image::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    left: -20px;
    bottom: -20px;
    border: 2px solid rgba(178, 14, 32, 0.25);
    border-radius: 20px;
}

.infrastructure-why-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 620px;
    display: block;
    object-fit: cover;
    border-radius: 26px;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.14);
}


/* Quality Card */

.infrastructure-quality-card {
    position: absolute;
    right: -25px;
    bottom: 40px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 17px 20px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.15);
    backdrop-filter: blur(12px);
}

.infrastructure-quality-card > i {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #b20e20;
    color: #ffffff;
}

.infrastructure-quality-card strong {
    display: block;
    color: #171a21;
    font-size: 16px;
}

.infrastructure-quality-card span {
    display: block;
    margin-top: 3px;
    color: #818895;
    font-size: 13px;
}


/* Why Content */

.infrastructure-why-content h3 {
    margin: 0 0 18px;
    color: #171a21;
    font-size: 42px;
    line-height: 1.18;
    font-weight: 800;
    letter-spacing: -1px;
}

.infrastructure-why-content h3 span {
    color: #b20e20;
}

.infrastructure-why-content > p {
    max-width: 620px;
    margin: 0 0 35px;
    color: #737a87;
    font-size: 16px;
    line-height: 1.85;
}


/* Benefits */

.infrastructure-benefit-list {
    display: grid;
    gap: 19px;
}

.infrastructure-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px 0;
    border-bottom: 1px solid #e7e8eb;
}

.infrastructure-benefit-item:last-child {
    border-bottom: 0;
}

.infrastructure-benefit-icon {
    width: 47px;
    height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 13px;
    background: rgba(178, 14, 32, 0.08);
    color: #b20e20;
    font-size: 17px;
}

.infrastructure-benefit-item h4 {
    margin: 0 0 5px;
    color: #1b1f28;
    font-size: 18px;
    font-weight: 750;
}

.infrastructure-benefit-item p {
    margin: 0;
    color: #7c838f;
    font-size: 15px;
    line-height: 1.65;
}


/* =========================================================
   PROCESS
========================================================= */

.infrastructure-process {
    padding: 70px 55px;
    border: 1px solid #e7e8ec;
    border-radius: 28px;
    background: #ffffff;
}

.infrastructure-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.infrastructure-process-card {
    position: relative;
    padding: 28px;
    border: 1px solid #e7e8ec;
    border-radius: 19px;
    background: #fafbfc;
    overflow: hidden;
    transition: all 0.35s ease;
}

.infrastructure-process-card:hover,
.infrastructure-process-card.active {
    border-color: rgba(178, 14, 32, 0.25);
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    transform: translateY(-5px);
}

.infrastructure-process-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.infrastructure-process-number {
    color: #b20e20;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
}

.infrastructure-process-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(178, 14, 32, 0.08);
    color: #b20e20;
    font-size: 17px;
    transition: all 0.3s ease;
}

.infrastructure-process-card:hover .infrastructure-process-icon,
.infrastructure-process-card.active .infrastructure-process-icon {
    background: #b20e20;
    color: #ffffff;
}

.infrastructure-process-card h4 {
    margin: 0 0 10px;
    color: #181c24;
    font-size: 22px;
    font-weight: 750;
}

.infrastructure-process-card > p {
    margin: 0;
    color: #767d89;
    font-size: 15px;
    line-height: 1.75;
}

.infrastructure-process-line {
    width: 45px;
    height: 3px;
    margin-top: 25px;
    border-radius: 10px;
    background: #b20e20;
}


/* =========================================================
   CONCLUSION
========================================================= */

.infrastructure-conclusion {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    margin-top: 70px;
    padding: 35px 40px;
    border: 1px solid rgba(178, 14, 32, 0.15);
    border-radius: 22px;
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #fff7f8 100%
    );
    overflow: hidden;
}

.infrastructure-conclusion::after {
    content: "";
    position: absolute;
    right: -60px;
    top: -100px;
    width: 220px;
    height: 220px;
    border: 35px solid rgba(178, 14, 32, 0.04);
    border-radius: 50%;
}

.infrastructure-conclusion-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 17px;
}

.infrastructure-conclusion-icon {
    width: 57px;
    height: 57px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 16px;
    background: #b20e20;
    color: #ffffff;
    font-size: 21px;
    box-shadow: 0 10px 25px rgba(178, 14, 32, 0.2);
}

.infrastructure-conclusion h3 {
    margin: 0 0 5px;
    color: #171a21;
    font-size: 22px;
    font-weight: 800;
}

.infrastructure-conclusion p {
    max-width: 700px;
    margin: 0;
    color: #737a87;
    font-size: 15px;
    line-height: 1.7;
}

.infrastructure-btn {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    flex-shrink: 0;
    padding: 15px 23px;
    border-radius: 12px;
    background: #b20e20;
    color: #ffffff;
    font-size: 15px;
    font-weight: 750;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(178, 14, 32, 0.2);
    transition: all 0.3s ease;
}

.infrastructure-btn:hover {
    background: #920b1a;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(178, 14, 32, 0.25);
}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1199px) {

    .infrastructure-hero {
        gap: 40px;
        padding: 40px;
    }

    .infrastructure-hero-content h2 {
        font-size: 44px;
    }

    .infrastructure-why {
        gap: 45px;
    }

    .infrastructure-why-content h3 {
        font-size: 36px;
    }

    .infrastructure-process {
        padding: 50px 35px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .arsha-infrastructure-details {
        padding: 80px 0;
    }

    .infrastructure-hero {
        grid-template-columns: 1fr;
    }

    .infrastructure-hero-content {
        max-width: 100%;
    }

    .infrastructure-hero-image {
        min-height: 450px;
    }

    .infrastructure-hero-image img {
        min-height: 450px;
    }

    .infrastructure-offer-grid {
        grid-template-columns: 1fr;
    }

    .infrastructure-offer-card {
        grid-template-columns: 40% 60%;
    }

    .infrastructure-why {
        grid-template-columns: 1fr;
    }

    .infrastructure-why-image {
        max-width: 700px;
        width: 100%;
        margin: 0 auto;
    }

    .infrastructure-why-content {
        max-width: 750px;
    }

    .infrastructure-process-grid {
        grid-template-columns: 1fr;
    }

    .infrastructure-conclusion {
        align-items: flex-start;
        flex-direction: column;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .arsha-infrastructure-details {
        padding: 60px 0;
    }

    .infrastructure-hero {
        gap: 30px;
        padding: 25px;
        border-radius: 22px;
    }

    .infrastructure-hero-content h2 {
        font-size: 34px;
        letter-spacing: -0.7px;
    }

    .infrastructure-hero-content > p {
        font-size: 15px;
        line-height: 1.8;
    }

    .infrastructure-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 17px;
    }

    .infrastructure-hero-image {
        min-height: 350px;
        border-radius: 18px;
    }

    .infrastructure-hero-image img {
        min-height: 350px;
    }

    .infrastructure-image-badge {
        left: 15px;
        right: 15px;
        bottom: 15px;
        max-width: none;
    }

    .infrastructure-intro {
        margin: 55px auto 65px;
    }

    .infrastructure-intro p {
        font-size: 16px;
        line-height: 1.8;
    }

    .infrastructure-section-heading h3,
    .infrastructure-process-heading h3 {
        font-size: 30px;
    }

    .infrastructure-offer-card {
        grid-template-columns: 1fr;
    }

    .infrastructure-offer-image {
        min-height: 220px;
        height: 220px;
    }

    .infrastructure-offer-content p {
        min-height: auto;
    }

    .infrastructure-why {
        margin: 75px 0;
        gap: 45px;
    }

    .infrastructure-why-image {
        min-height: 450px;
    }

    .infrastructure-why-image img {
        height: 450px;
    }

    .infrastructure-quality-card {
        right: 15px;
        bottom: 20px;
    }

    .infrastructure-why-content h3 {
        font-size: 31px;
    }

    .infrastructure-process {
        padding: 35px 22px;
        border-radius: 22px;
    }

    .infrastructure-process-card {
        padding: 23px;
    }

    .infrastructure-conclusion {
        margin-top: 50px;
        padding: 27px 22px;
    }

    .infrastructure-conclusion-content {
        align-items: flex-start;
    }

    .infrastructure-conclusion h3 {
        font-size: 18px;
    }

    .infrastructure-conclusion p {
        font-size: 13px;
    }

    .infrastructure-btn {
        width: 100%;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .infrastructure-hero {
        padding: 20px;
    }

    .infrastructure-hero-content h2 {
        font-size: 30px;
    }

    .infrastructure-tag {
        font-size: 11px;
    }

    .infrastructure-hero-image,
    .infrastructure-hero-image img {
        min-height: 300px;
    }

    .infrastructure-image-badge {
        padding: 12px;
    }

    .infrastructure-badge-icon {
        width: 38px;
        height: 38px;
    }

    .infrastructure-offer-content {
        padding: 22px;
    }

    .infrastructure-why-image {
        min-height: 380px;
    }

    .infrastructure-why-image img {
        height: 380px;
    }

    .infrastructure-quality-card {
        left: 15px;
        right: 15px;
        bottom: 15px;
    }

    .infrastructure-why-content h3 {
        font-size: 28px;
    }

    .infrastructure-benefit-item {
        gap: 12px;
    }

    .infrastructure-benefit-icon {
        width: 42px;
        height: 42px;
    }

    .infrastructure-conclusion-content {
        flex-direction: column;
    }

}





/* =========================================================
   ARSHA ENGINEERING & TECHNICAL SOLUTIONS
   PREMIUM SERVICE SECTION
========================================================= */

.arsha-engineering-details {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: #f7f8fa;
    font-family: inherit;
}

.arsha-engineering-details .container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   HERO
========================================================= */

.engineering-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
    padding: 55px;
    background: #ffffff;
    border: 1px solid #e8e9ed;
    border-radius: 30px;
    box-shadow: 0 25px 70px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.engineering-hero-content {
    max-width: 650px;
}

.engineering-tag {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 17px;
    margin-bottom: 22px;
    border-radius: 50px;
    background: rgba(178, 14, 32, 0.08);
    color: #b20e20;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.engineering-hero-content h2 {
    margin: 0 0 22px;
    color: #111827;
    font-size: 52px;
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.engineering-hero-content > p {
    margin: 0;
    color: #667085;
    font-size: 17px;
    line-height: 1.9;
}


/* Hero Meta */

.engineering-meta {
    display: flex;
    align-items: center;
    gap: 35px;
    margin-top: 35px;
}

.engineering-meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.engineering-meta-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 12px;
    background: #b20e20;
    color: #ffffff;
    font-size: 16px;
    box-shadow: 0 8px 20px rgba(178, 14, 32, 0.2);
}

.engineering-meta-item strong {
    display: block;
    margin-bottom: 2px;
    color: #1b1f2a;
    font-size: 17px;
    font-weight: 700;
}

/* Hero Image */

.engineering-hero-image {
    position: relative;
    min-height: 500px;
    border-radius: 24px;
    overflow: hidden;
}

.engineering-hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 45%,
        rgba(0, 0, 0, 0.48) 100%
    );
    pointer-events: none;
}

.engineering-hero-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    display: block;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.engineering-hero:hover .engineering-hero-image img {
    transform: scale(1.04);
}


/* Hero Badge */

.engineering-image-badge {
    position: absolute;
    left: 25px;
    bottom: 25px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 13px;
    max-width: calc(100% - 50px);
    padding: 15px 18px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.engineering-badge-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 11px;
    background: #b20e20;
    color: #ffffff;
}

.engineering-image-badge strong {
    display: block;
    color: #171a21;
    font-size: 13px;
    font-weight: 700;
}

.engineering-image-badge > div > span {
    display: block;
    margin-top: 3px;
    color: #727987;
    font-size: 11px;
}


/* =========================================================
   INTRO
========================================================= */

.engineering-intro {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    max-width: 900px;
    margin: 70px auto 90px;
}

.engineering-intro-line {
    width: 4px;
    min-width: 4px;
    min-height: 85px;
    border-radius: 10px;
    background: #b20e20;
}

.engineering-intro p {
    margin: 0;
    color: #667085;
    font-size: 18px;
    line-height: 1.9;
}


/* =========================================================
   SECTION HEADINGS
========================================================= */

.engineering-section-heading,
.engineering-process-heading {
    max-width: 680px;
    margin-bottom: 40px;
}

.engineering-mini-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 13px;
    color: #b20e20;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.engineering-section-heading h3,
.engineering-process-heading h3 {
    margin: 0 0 13px;
    color: #161a22;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.8px;
}

.engineering-section-heading p,
.engineering-process-heading p {
    margin: 0;
    color: #747b88;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   ENGINEERING SERVICE CARDS
========================================================= */

.engineering-offer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.engineering-offer-card {
    position: relative;
    display: grid;
    grid-template-columns: 42% 58%;
    background: #ffffff;
    border: 1px solid #e8e9ed;
    border-radius: 22px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.engineering-offer-card:hover {
    transform: translateY(-8px);
    border-color: rgba(178, 14, 32, 0.2);
    box-shadow: 0 25px 55px rgba(15, 23, 42, 0.11);
}


/* Card Image */

.engineering-offer-image {
    position: relative;
    min-height: 290px;
    overflow: hidden;
}

.engineering-offer-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 40%,
        rgba(0, 0, 0, 0.4) 100%
    );
}

.engineering-offer-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.engineering-offer-card:hover .engineering-offer-image img {
    transform: scale(1.08);
}

.engineering-offer-number {
    position: absolute;
    top: 17px;
    left: 17px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.35);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    backdrop-filter: blur(8px);
}


/* Card Content */

.engineering-offer-content {
    position: relative;
    padding: 27px 25px;
}

.engineering-offer-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 14px;
    background: rgba(178, 14, 32, 0.08);
    color: #b20e20;
    font-size: 18px;
    transition: all 0.35s ease;
}

.engineering-offer-card:hover .engineering-offer-icon {
    background: #b20e20;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(178, 14, 32, 0.2);
}

.engineering-offer-content h4 {
    margin: 0 0 10px;
    color: #171a21;
    font-size: 22px;
    line-height: 1.4;
    font-weight: 750;
}

.engineering-offer-content p {
    min-height: 82px;
    margin: 0 0 18px;
    color: #747b88;
    font-size: 15px;
    line-height: 1.75;
}

.engineering-offer-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #b20e20;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.engineering-offer-link:hover {
    gap: 14px;
    color: #8d0a18;
}


/* =========================================================
   WHY ENGINEERING TEAM
========================================================= */

.engineering-why {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 75px;
    align-items: center;
    margin: 110px 0;
}

.engineering-why-image {
    position: relative;
    min-height: 620px;
}

.engineering-why-image::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    left: -20px;
    bottom: -20px;
    border: 2px solid rgba(178, 14, 32, 0.25);
    border-radius: 20px;
}

.engineering-why-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 620px;
    display: block;
    object-fit: cover;
    border-radius: 26px;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.14);
}


/* Quality Card */

.engineering-quality-card {
    position: absolute;
    right: -25px;
    bottom: 40px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 17px 20px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.15);
    backdrop-filter: blur(12px);
}

.engineering-quality-card > i {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #b20e20;
    color: #ffffff;
}

.engineering-quality-card strong {
    display: block;
    color: #171a21;
    font-size: 16px;
}

.engineering-quality-card span {
    display: block;
    margin-top: 3px;
    color: #818895;
    font-size: 13px;
}


/* Why Content */

.engineering-why-content h3 {
    margin: 0 0 18px;
    color: #171a21;
    font-size: 42px;
    line-height: 1.18;
    font-weight: 800;
    letter-spacing: -1px;
}

.engineering-why-content h3 span {
    color: #b20e20;
}

.engineering-why-content > p {
    max-width: 620px;
    margin: 0 0 35px;
    color: #737a87;
    font-size: 16px;
    line-height: 1.85;
}


/* Benefits */

.engineering-benefit-list {
    display: grid;
    gap: 19px;
}

.engineering-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px 0;
    border-bottom: 1px solid #e7e8eb;
}

.engineering-benefit-item:last-child {
    border-bottom: 0;
}

.engineering-benefit-icon {
    width: 47px;
    height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 13px;
    background: rgba(178, 14, 32, 0.08);
    color: #b20e20;
    font-size: 17px;
}

.engineering-benefit-item h4 {
    margin: 0 0 5px;
    color: #1b1f28;
    font-size: 18px;
    font-weight: 750;
}

.engineering-benefit-item p {
    margin: 0;
    color: #7c838f;
    font-size: 15px;
    line-height: 1.65;
}


/* =========================================================
   ENGINEERING PROCESS
========================================================= */

.engineering-process {
    padding: 70px 55px;
    border: 1px solid #e7e8ec;
    border-radius: 28px;
    background: #ffffff;
}

.engineering-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.engineering-process-card {
    position: relative;
    padding: 28px;
    border: 1px solid #e7e8ec;
    border-radius: 19px;
    background: #fafbfc;
    overflow: hidden;
    transition: all 0.35s ease;
}

.engineering-process-card:hover,
.engineering-process-card.active {
    border-color: rgba(178, 14, 32, 0.25);
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    transform: translateY(-5px);
}

.engineering-process-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.engineering-process-number {
    color: #b20e20;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
}

.engineering-process-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(178, 14, 32, 0.08);
    color: #b20e20;
    font-size: 17px;
    transition: all 0.3s ease;
}

.engineering-process-card:hover .engineering-process-icon,
.engineering-process-card.active .engineering-process-icon {
    background: #b20e20;
    color: #ffffff;
}

.engineering-process-card h4 {
    margin: 0 0 10px;
    color: #181c24;
    font-size: 22px;
    font-weight: 750;
}

.engineering-process-card > p {
    margin: 0;
    color: #767d89;
    font-size: 15px;
    line-height: 1.75;
}

.engineering-process-line {
    width: 45px;
    height: 3px;
    margin-top: 25px;
    border-radius: 10px;
    background: #b20e20;
}


/* =========================================================
   CONCLUSION
========================================================= */

.engineering-conclusion {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    margin-top: 70px;
    padding: 35px 40px;
    border: 1px solid rgba(178, 14, 32, 0.15);
    border-radius: 22px;
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #fff7f8 100%
    );
    overflow: hidden;
}

.engineering-conclusion::after {
    content: "";
    position: absolute;
    right: -60px;
    top: -100px;
    width: 220px;
    height: 220px;
    border: 35px solid rgba(178, 14, 32, 0.04);
    border-radius: 50%;
}

.engineering-conclusion-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 17px;
}

.engineering-conclusion-icon {
    width: 57px;
    height: 57px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 16px;
    background: #b20e20;
    color: #ffffff;
    font-size: 21px;
    box-shadow: 0 10px 25px rgba(178, 14, 32, 0.2);
}

.engineering-conclusion h3 {
    margin: 0 0 5px;
    color: #171a21;
    font-size: 21px;
    font-weight: 800;
}

.engineering-conclusion p {
    max-width: 700px;
    margin: 0;
    color: #737a87;
    font-size: 14px;
    line-height: 1.7;
}

.engineering-btn {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    flex-shrink: 0;
    padding: 15px 23px;
    border-radius: 12px;
    background: #b20e20;
    color: #ffffff;
    font-size: 15px;
    font-weight: 750;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(178, 14, 32, 0.2);
    transition: all 0.3s ease;
}

.engineering-btn:hover {
    background: #920b1a;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(178, 14, 32, 0.25);
}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1199px) {

    .engineering-hero {
        gap: 40px;
        padding: 40px;
    }

    .engineering-hero-content h2 {
        font-size: 44px;
    }

    .engineering-why {
        gap: 45px;
    }

    .engineering-why-content h3 {
        font-size: 36px;
    }

    .engineering-process {
        padding: 50px 35px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .arsha-engineering-details {
        padding: 80px 0;
    }

    .engineering-hero {
        grid-template-columns: 1fr;
    }

    .engineering-hero-content {
        max-width: 100%;
    }

    .engineering-hero-image {
        min-height: 450px;
    }

    .engineering-hero-image img {
        min-height: 450px;
    }

    .engineering-offer-grid {
        grid-template-columns: 1fr;
    }

    .engineering-offer-card {
        grid-template-columns: 40% 60%;
    }

    .engineering-why {
        grid-template-columns: 1fr;
    }

    .engineering-why-image {
        max-width: 700px;
        width: 100%;
        margin: 0 auto;
    }

    .engineering-why-content {
        max-width: 750px;
    }

    .engineering-process-grid {
        grid-template-columns: 1fr;
    }

    .engineering-conclusion {
        align-items: flex-start;
        flex-direction: column;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .arsha-engineering-details {
        padding: 60px 0;
    }

    .engineering-hero {
        gap: 30px;
        padding: 25px;
        border-radius: 22px;
    }

    .engineering-hero-content h2 {
        font-size: 34px;
        letter-spacing: -0.7px;
    }

    .engineering-hero-content > p {
        font-size: 15px;
        line-height: 1.8;
    }

    .engineering-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 17px;
    }

    .engineering-hero-image {
        min-height: 350px;
        border-radius: 18px;
    }

    .engineering-hero-image img {
        min-height: 350px;
    }

    .engineering-image-badge {
        left: 15px;
        right: 15px;
        bottom: 15px;
        max-width: none;
    }

    .engineering-intro {
        margin: 55px auto 65px;
    }

    .engineering-intro p {
        font-size: 16px;
        line-height: 1.8;
    }

    .engineering-section-heading h3,
    .engineering-process-heading h3 {
        font-size: 30px;
    }

    .engineering-offer-card {
        grid-template-columns: 1fr;
    }

    .engineering-offer-image {
        min-height: 220px;
        height: 220px;
    }

    .engineering-offer-content p {
        min-height: auto;
    }

    .engineering-why {
        margin: 75px 0;
        gap: 45px;
    }

    .engineering-why-image {
        min-height: 450px;
    }

    .engineering-why-image img {
        height: 450px;
    }

    .engineering-quality-card {
        right: 15px;
        bottom: 20px;
    }

    .engineering-why-content h3 {
        font-size: 31px;
    }

    .engineering-process {
        padding: 35px 22px;
        border-radius: 22px;
    }

    .engineering-process-card {
        padding: 23px;
    }

    .engineering-conclusion {
        margin-top: 50px;
        padding: 27px 22px;
    }

    .engineering-conclusion-content {
        align-items: flex-start;
    }

    .engineering-conclusion h3 {
        font-size: 22px;
    }

    .engineering-conclusion p {
        font-size: 15px;
    }

    .engineering-btn {
        width: 100%;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .engineering-hero {
        padding: 20px;
    }

    .engineering-hero-content h2 {
        font-size: 30px;
    }

    .engineering-tag {
        font-size: 11px;
    }

    .engineering-hero-image,
    .engineering-hero-image img {
        min-height: 300px;
    }

    .engineering-image-badge {
        padding: 12px;
    }

    .engineering-badge-icon {
        width: 38px;
        height: 38px;
    }

    .engineering-offer-content {
        padding: 22px;
    }

    .engineering-why-image {
        min-height: 380px;
    }

    .engineering-why-image img {
        height: 380px;
    }

    .engineering-quality-card {
        left: 15px;
        right: 15px;
        bottom: 15px;
    }

    .engineering-why-content h3 {
        font-size: 28px;
    }

    .engineering-benefit-item {
        gap: 12px;
    }

    .engineering-benefit-icon {
        width: 42px;
        height: 42px;
    }

    .engineering-conclusion-content {
        flex-direction: column;
    }

}








/* =========================================================
   ARSHA ARCHITECTURAL & DESIGN SERVICES
   PREMIUM MODERN DESIGN
========================================================= */

.arsha-architecture-details {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: #f7f8fa;
}

.arsha-architecture-details .container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   HERO
========================================================= */

.architecture-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
    padding: 55px;
    background: #ffffff;
    border: 1px solid #e7e8ec;
    border-radius: 30px;
    box-shadow: 0 25px 70px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.architecture-hero-content {
    max-width: 650px;
}

.architecture-tag {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 17px;
    margin-bottom: 22px;
    border-radius: 50px;
    background: rgba(178, 14, 32, 0.08);
    color: #b20e20;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.architecture-hero-content h2 {
    margin: 0 0 22px;
    color: #111827;
    font-size: 52px;
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.architecture-hero-content h2 span {
    color: #b20e20;
}

.architecture-hero-content > p {
    margin: 0;
    color: #667085;
    font-size: 17px;
    line-height: 1.9;
}


/* Hero Meta */

.architecture-meta {
    display: flex;
    align-items: center;
    gap: 35px;
    margin-top: 35px;
}

.architecture-meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.architecture-meta-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 12px;
    background: #b20e20;
    color: #ffffff;
    font-size: 16px;
    box-shadow: 0 8px 20px rgba(178, 14, 32, 0.2);
}

.architecture-meta-item strong {
    display: block;
    margin-bottom: 2px;
    color: #1b1f2a;
    font-size: 17px;
    font-weight: 700;
}


/* Hero Image */

.architecture-hero-image {
    position: relative;
    min-height: 500px;
    border-radius: 24px;
    overflow: hidden;
}

.architecture-hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 40%,
        rgba(0, 0, 0, 0.5) 100%
    );
    pointer-events: none;
}

.architecture-hero-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    display: block;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.architecture-hero:hover .architecture-hero-image img {
    transform: scale(1.04);
}


/* Hero Badge */

.architecture-image-badge {
    position: absolute;
    left: 25px;
    bottom: 25px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 13px;
    max-width: calc(100% - 50px);
    padding: 15px 18px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.architecture-badge-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 11px;
    background: #b20e20;
    color: #ffffff;
}

.architecture-image-badge strong {
    display: block;
    color: #171a21;
    font-size: 16px;
    font-weight: 700;
}

.architecture-image-badge > div > span {
    display: block;
    margin-top: 3px;
    color: #727987;
    font-size: 13px;
}


/* =========================================================
   INTRO
========================================================= */

.architecture-intro {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    max-width: 900px;
    margin: 70px auto 90px;
}

.architecture-intro-line {
    width: 4px;
    min-width: 4px;
    min-height: 85px;
    border-radius: 10px;
    background: #b20e20;
}

.architecture-intro p {
    margin: 0;
    color: #667085;
    font-size: 18px;
    line-height: 1.9;
}


/* =========================================================
   SECTION HEADINGS
========================================================= */

.architecture-section-heading,
.architecture-process-heading {
    max-width: 700px;
    margin-bottom: 40px;
}

.architecture-mini-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 13px;
    color: #b20e20;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.architecture-section-heading h3,
.architecture-process-heading h3 {
    margin: 0 0 13px;
    color: #161a22;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.8px;
}

.architecture-section-heading p,
.architecture-process-heading p {
    margin: 0;
    color: #747b88;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   ARCHITECTURAL SERVICE CARDS
========================================================= */

.architecture-service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.architecture-service-card {
    position: relative;
    display: grid;
    grid-template-columns: 42% 58%;
    background: #ffffff;
    border: 1px solid #e8e9ed;
    border-radius: 22px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.architecture-service-card-wide {
    grid-column: 1 / -1;
    grid-template-columns: 30% 70%;
}

.architecture-service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(178, 14, 32, 0.2);
    box-shadow: 0 25px 55px rgba(15, 23, 42, 0.11);
}


/* Card Image */

.architecture-service-image {
    position: relative;
    min-height: 290px;
    overflow: hidden;
}

.architecture-service-card-wide .architecture-service-image {
    min-height: 300px;
}

.architecture-service-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 40%,
        rgba(0, 0, 0, 0.4) 100%
    );
}

.architecture-service-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.architecture-service-card:hover .architecture-service-image img {
    transform: scale(1.08);
}

.architecture-service-number {
    position: absolute;
    top: 17px;
    left: 17px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.35);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    backdrop-filter: blur(8px);
}


/* Card Content */

.architecture-service-content {
    position: relative;
    padding: 27px 25px;
}

.architecture-service-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 14px;
    background: rgba(178, 14, 32, 0.08);
    color: #b20e20;
    font-size: 18px;
    transition: all 0.35s ease;
}

.architecture-service-card:hover .architecture-service-icon {
    background: #b20e20;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(178, 14, 32, 0.2);
}

.architecture-service-content h4 {
    margin: 0 0 10px;
    color: #171a21;
    font-size: 22px;
    line-height: 1.4;
    font-weight: 750;
}

.architecture-service-content p {
    min-height: 82px;
    margin: 0 0 18px;
    color: #747b88;
    font-size: 15px;
    line-height: 1.75;
}

.architecture-service-card-wide .architecture-service-content p {
    max-width: 650px;
}

.architecture-service-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #b20e20;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.architecture-service-link:hover {
    gap: 14px;
    color: #8d0a18;
}


/* =========================================================
   WHY CHOOSE DESIGN TEAM
========================================================= */

.architecture-why {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 75px;
    align-items: center;
    margin: 110px 0;
}

.architecture-why-image {
    position: relative;
    min-height: 620px;
}

.architecture-why-image::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    left: -20px;
    bottom: -20px;
    border: 2px solid rgba(178, 14, 32, 0.25);
    border-radius: 20px;
}

.architecture-why-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 620px;
    display: block;
    object-fit: cover;
    border-radius: 26px;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.14);
}


/* Quality Card */

.architecture-quality-card {
    position: absolute;
    right: -25px;
    bottom: 40px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 17px 20px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.15);
    backdrop-filter: blur(12px);
}

.architecture-quality-card > i {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #b20e20;
    color: #ffffff;
}

.architecture-quality-card strong {
    display: block;
    color: #171a21;
    font-size: 16px;
}

.architecture-quality-card span {
    display: block;
    margin-top: 3px;
    color: #818895;
    font-size: 13px;
}


/* Why Content */

.architecture-why-content h3 {
    margin: 0 0 18px;
    color: #171a21;
    font-size: 42px;
    line-height: 1.18;
    font-weight: 800;
    letter-spacing: -1px;
}

.architecture-why-content h3 span {
    color: #b20e20;
}

.architecture-why-content > p {
    max-width: 620px;
    margin: 0 0 35px;
    color: #737a87;
    font-size: 16px;
    line-height: 1.85;
}


/* Benefits */

.architecture-benefit-list {
    display: grid;
    gap: 19px;
}

.architecture-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px 0;
    border-bottom: 1px solid #e7e8eb;
}

.architecture-benefit-item:last-child {
    border-bottom: 0;
}

.architecture-benefit-icon {
    width: 47px;
    height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 13px;
    background: rgba(178, 14, 32, 0.08);
    color: #b20e20;
    font-size: 17px;
}

.architecture-benefit-item h4 {
    margin: 0 0 5px;
    color: #1b1f28;
    font-size: 18px;
    font-weight: 750;
}

.architecture-benefit-item p {
    margin: 0;
    color: #7c838f;
    font-size: 15px;
    line-height: 1.65;
}


/* =========================================================
   DESIGN PROCESS
========================================================= */

.architecture-process {
    padding: 70px 55px;
    border: 1px solid #e7e8ec;
    border-radius: 28px;
    background: #ffffff;
}

.architecture-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.architecture-process-card {
    position: relative;
    padding: 28px;
    border: 1px solid #e7e8ec;
    border-radius: 19px;
    background: #fafbfc;
    overflow: hidden;
    transition: all 0.35s ease;
}

.architecture-process-card:hover,
.architecture-process-card.active {
    border-color: rgba(178, 14, 32, 0.25);
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    transform: translateY(-5px);
}

.architecture-process-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.architecture-process-number {
    color: #b20e20;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
}

.architecture-process-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(178, 14, 32, 0.08);
    color: #b20e20;
    font-size: 17px;
    transition: all 0.3s ease;
}

.architecture-process-card:hover .architecture-process-icon,
.architecture-process-card.active .architecture-process-icon {
    background: #b20e20;
    color: #ffffff;
}

.architecture-process-card h4 {
    margin: 0 0 10px;
    color: #181c24;
    font-size: 22px;
    font-weight: 750;
}

.architecture-process-card > p {
    margin: 0;
    color: #767d89;
    font-size: 15px;
    line-height: 1.75;
}

.architecture-process-line {
    width: 45px;
    height: 3px;
    margin-top: 25px;
    border-radius: 10px;
    background: #b20e20;
}


/* =========================================================
   CONCLUSION
========================================================= */

.architecture-conclusion {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    margin-top: 70px;
    padding: 35px 40px;
    border: 1px solid rgba(178, 14, 32, 0.15);
    border-radius: 22px;
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #fff7f8 100%
    );
    overflow: hidden;
}

.architecture-conclusion::after {
    content: "";
    position: absolute;
    right: -60px;
    top: -100px;
    width: 220px;
    height: 220px;
    border: 35px solid rgba(178, 14, 32, 0.04);
    border-radius: 50%;
}

.architecture-conclusion-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 17px;
}

.architecture-conclusion-icon {
    width: 57px;
    height: 57px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 16px;
    background: #b20e20;
    color: #ffffff;
    font-size: 21px;
    box-shadow: 0 10px 25px rgba(178, 14, 32, 0.2);
}

.architecture-conclusion h3 {
    margin: 0 0 5px;
    color: #171a21;
    font-size: 22px;
    font-weight: 800;
}

.architecture-conclusion p {
    max-width: 700px;
    margin: 0;
    color: #737a87;
    font-size: 15px;
    line-height: 1.7;
}

.architecture-btn {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    flex-shrink: 0;
    padding: 15px 23px;
    border-radius: 12px;
    background: #b20e20;
    color: #ffffff;
    font-size: 15px;
    font-weight: 750;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(178, 14, 32, 0.2);
    transition: all 0.3s ease;
}

.architecture-btn:hover {
    background: #920b1a;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(178, 14, 32, 0.25);
}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1199px) {

    .architecture-hero {
        gap: 40px;
        padding: 40px;
    }

    .architecture-hero-content h2 {
        font-size: 44px;
    }

    .architecture-why {
        gap: 45px;
    }

    .architecture-why-content h3 {
        font-size: 36px;
    }

    .architecture-process {
        padding: 50px 35px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .arsha-architecture-details {
        padding: 80px 0;
    }

    .architecture-hero {
        grid-template-columns: 1fr;
    }

    .architecture-hero-content {
        max-width: 100%;
    }

    .architecture-hero-image {
        min-height: 450px;
    }

    .architecture-hero-image img {
        min-height: 450px;
    }

    .architecture-service-grid {
        grid-template-columns: 1fr;
    }

    .architecture-service-card,
    .architecture-service-card-wide {
        grid-column: auto;
        grid-template-columns: 40% 60%;
    }

    .architecture-why {
        grid-template-columns: 1fr;
    }

    .architecture-why-image {
        max-width: 700px;
        width: 100%;
        margin: 0 auto;
    }

    .architecture-why-content {
        max-width: 750px;
    }

    .architecture-process-grid {
        grid-template-columns: 1fr;
    }

    .architecture-conclusion {
        align-items: flex-start;
        flex-direction: column;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .arsha-architecture-details {
        padding: 60px 0;
    }

    .architecture-hero {
        gap: 30px;
        padding: 25px;
        border-radius: 22px;
    }

    .architecture-hero-content h2 {
        font-size: 34px;
        letter-spacing: -0.7px;
    }

    .architecture-hero-content > p {
        font-size: 15px;
        line-height: 1.8;
    }

    .architecture-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 17px;
    }

    .architecture-hero-image {
        min-height: 350px;
        border-radius: 18px;
    }

    .architecture-hero-image img {
        min-height: 350px;
    }

    .architecture-image-badge {
        left: 15px;
        right: 15px;
        bottom: 15px;
        max-width: none;
    }

    .architecture-intro {
        margin: 55px auto 65px;
    }

    .architecture-intro p {
        font-size: 16px;
        line-height: 1.8;
    }

    .architecture-section-heading h3,
    .architecture-process-heading h3 {
        font-size: 30px;
    }

    .architecture-service-card,
    .architecture-service-card-wide {
        grid-template-columns: 1fr;
    }

    .architecture-service-image,
    .architecture-service-card-wide .architecture-service-image {
        min-height: 220px;
        height: 220px;
    }

    .architecture-service-content p {
        min-height: auto;
    }

    .architecture-why {
        margin: 75px 0;
        gap: 45px;
    }

    .architecture-why-image {
        min-height: 450px;
    }

    .architecture-why-image img {
        height: 450px;
    }

    .architecture-quality-card {
        right: 15px;
        bottom: 20px;
    }

    .architecture-why-content h3 {
        font-size: 31px;
    }

    .architecture-process {
        padding: 35px 22px;
        border-radius: 22px;
    }

    .architecture-process-card {
        padding: 23px;
    }

    .architecture-conclusion {
        margin-top: 50px;
        padding: 27px 22px;
    }

    .architecture-conclusion-content {
        align-items: flex-start;
    }

    .architecture-conclusion h3 {
        font-size: 22px;
    }

    .architecture-conclusion p {
        font-size: 15px;
    }

    .architecture-btn {
        width: 100%;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .architecture-hero {
        padding: 20px;
    }

    .architecture-hero-content h2 {
        font-size: 30px;
    }

    .architecture-tag {
        font-size: 11px;
    }

    .architecture-hero-image,
    .architecture-hero-image img {
        min-height: 300px;
    }

    .architecture-image-badge {
        padding: 12px;
    }

    .architecture-badge-icon {
        width: 38px;
        height: 38px;
    }

    .architecture-service-content {
        padding: 22px;
    }

    .architecture-why-image {
        min-height: 380px;
    }

    .architecture-why-image img {
        height: 380px;
    }

    .architecture-quality-card {
        left: 15px;
        right: 15px;
        bottom: 15px;
    }

    .architecture-why-content h3 {
        font-size: 28px;
    }

    .architecture-benefit-item {
        gap: 12px;
    }

    .architecture-benefit-icon {
        width: 42px;
        height: 42px;
    }

    .architecture-conclusion-content {
        flex-direction: column;
    }

}










/* =========================================================
   ARSHA INFRASTRUCTURE
   PREMIUM NEPALI HERO SECTION
========================================================= */

.arsha-hero-section {
    position: relative;

    width: 100%;
    min-height: 850px;

    display: flex;
    align-items: center;

    padding: 120px 0 115px;

    overflow: hidden;

    background: #0c0c0c;

    isolation: isolate;
}


/* =========================================================
   FULL BACKGROUND IMAGE
========================================================= */

.hero-background {
    position: absolute;

    inset: 0;

    z-index: -6;

    overflow: hidden;
}


.hero-background img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    transform: scale(1.03);

    filter: saturate(.82) contrast(1.08);

    animation: heroImageZoom 20s ease-in-out infinite alternate;
}


/* =========================================================
   PREMIUM IMAGE OVERLAY
========================================================= */

.hero-overlay {
    position: absolute;

    inset: 0;

    z-index: -5;

    background:

        linear-gradient(
            90deg,
            rgba(4, 5, 5, .96) 0%,
            rgba(4, 5, 5, .90) 25%,
            rgba(4, 5, 5, .70) 52%,
            rgba(4, 5, 5, .38) 80%,
            rgba(4, 5, 5, .25) 100%
        ),

        linear-gradient(
            180deg,
            rgba(0, 0, 0, .50) 0%,
            transparent 35%,
            rgba(0, 0, 0, .78) 100%
        );
}


/* =========================================================
   RED ATMOSPHERIC GLOW
========================================================= */

.arsha-hero-section::before {
    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    left: -350px;
    top: -250px;

    background: rgba(211, 38, 38, .11);

    border-radius: 50%;

    filter: blur(70px);

    z-index: -4;

    animation: heroGlow 9s ease-in-out infinite alternate;
}


/* =========================================================
   BLUEPRINT GRID
========================================================= */

.hero-grid {
    position: absolute;

    inset: 0;

    z-index: -3;

    opacity: .11;

    background-image:

        linear-gradient(
            rgba(255, 255, 255, .6) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255, 255, 255, .6) 1px,
            transparent 1px
        );

    background-size: 65px 65px;

    mask-image:
        linear-gradient(
            90deg,
            black 0%,
            black 50%,
            transparent 100%
        );
}


/* =========================================================
   MAIN WRAPPER
========================================================= */

.arsha-hero-wrapper {
    position: relative;

    width: 100%;

    min-height: 600px;

    display: flex;
    align-items: center;
}


/* =========================================================
   CONTENT PANEL
========================================================= */

.hero-content-panel {
    position: relative;

    z-index: 5;

    width: 78%;

    color: #fff;
}


.panel-inner {
    position: relative;

    max-width: 940px;
}


/* =========================================================
   EYEBROW
========================================================= */

.hero-eyebrow {
    display: flex;
    align-items: center;

    gap: 13px;

    margin-bottom: 22px;

    color: rgba(255, 255, 255, .88);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2.8px;
}


.eyebrow-line {
    position: relative;

    width: 45px;
    height: 2px;

    background: #e22c2c;
}


.eyebrow-line::after {
    content: "";

    position: absolute;

    right: -5px;
    top: 50%;

    width: 6px;
    height: 6px;

    transform: translateY(-50%);

    background: #e22c2c;

    border-radius: 50%;
}


/* =========================================================
   SERVICE PILLS
========================================================= */

.hero-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 25px;
}


.hero-pill {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    padding: 8px 13px;

    color: rgba(255, 255, 255, .90);

    background: rgba(255, 255, 255, .075);

    border: 1px solid rgba(255, 255, 255, .17);

    border-radius: 50px;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .5px;

    transition:
        transform .35s ease,
        background .35s ease,
        border-color .35s ease;
}


.hero-pill i {
    color: #e52d2d;

    font-size: 11px;
}


.hero-pill:hover {
    transform: translateY(-3px);

    background: rgba(214, 40, 40, .16);

    border-color: rgba(229, 45, 45, .45);
}


/* =========================================================
   MAIN NEPALI HEADING
========================================================= */

.hero-main-heading {
    margin: 0;

    max-width: 950px;

    color: #fff;

    font-family: inherit;

    line-height: 1;

    font-weight: 900;

    letter-spacing: -1.8px;
}


/* Small heading */

.heading-small {
    display: block;

    margin-bottom: 13px;

    color: rgba(255, 255, 255, .62);

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 3px;

    text-transform: uppercase;
}


/* Main Nepali text */

.heading-main {
    display: block;

    color: #fff;

    font-size: clamp(48px, 6.1vw, 86px);

    line-height: 1.08;

    font-weight: 900;

    letter-spacing: -2.5px;

    text-shadow:
        0 8px 35px rgba(0, 0, 0, .25);
}


/* Red highlighted statement */

.hero-main-heading strong {
    display: block;

    margin-top: 5px;

    color: #e52d2d;

    font-size: clamp(43px, 5.6vw, 79px);

    line-height: 1.08;

    font-weight: 900;

    letter-spacing: -2.5px;

    text-shadow:
        0 10px 35px rgba(0, 0, 0, .35);
}


/* =========================================================
   NEPALI DESCRIPTION
========================================================= */

.hero-description {
    max-width: 680px;

    margin: 22px 0 0;

    color: rgba(255, 255, 255, .78);

    font-size: 16px;

    line-height: 1.95;

    font-weight: 400;

    letter-spacing: .05px;
}


/* =========================================================
   ENGLISH DESCRIPTION
========================================================= */

.hero-description-en {
    max-width: 690px;

    margin: 12px 0 0;

    color: rgba(255, 255, 255, .50);

    font-size: 12px;

    line-height: 1.7;

    font-weight: 400;

    font-style: italic;
}


/* =========================================================
   CTA BUTTONS
========================================================= */

.hero-button {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 30px;
}


.hero-main-btn,
.hero-outline-btn {
    position: relative;

    min-height: 56px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 20px;

    padding: 0 22px 0 26px;

    overflow: hidden;

    border-radius: 5px;

    text-decoration: none;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.4px;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        background .35s ease,
        color .35s ease;
}


.hero-main-btn {
    color: #fff;

    background: #d62828;

    box-shadow:
        0 15px 35px rgba(214, 40, 40, .30);
}


.hero-main-btn::before {
    content: "";

    position: absolute;

    inset: 0;

    width: 0;

    background: #fff;

    transition: width .4s ease;

    z-index: 0;
}


.hero-main-btn span,
.hero-main-btn i,
.hero-outline-btn span,
.hero-outline-btn i {
    position: relative;

    z-index: 2;
}


.hero-main-btn:hover::before {
    width: 100%;
}


.hero-main-btn:hover {
    color: #171717;

    transform: translateY(-4px);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, .30);
}


.hero-outline-btn {
    color: #fff;

    background: rgba(255, 255, 255, .07);

    border: 1px solid rgba(255, 255, 255, .35);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}


.hero-outline-btn:hover {
    color: #171717;

    background: #fff;

    border-color: #fff;

    transform: translateY(-4px);

    box-shadow:
        0 20px 40px rgba(0, 0, 0, .22);
}


.hero-main-btn i,
.hero-outline-btn i {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    transition: transform .35s ease;
}


.hero-main-btn i {
    background: rgba(255, 255, 255, .17);
}


.hero-outline-btn i {
    background: rgba(255, 255, 255, .10);
}


.hero-main-btn:hover i,
.hero-outline-btn:hover i {
    transform: translateX(5px);
}


/* =========================================================
   STATS
========================================================= */

.hero-stats {
    display: flex;
    align-items: center;

    gap: 28px;

    margin-top: 38px;

    padding-top: 22px;

    max-width: 650px;

    border-top: 1px solid rgba(255, 255, 255, .16);
}


.stat-item {
    min-width: 105px;
}


.stat-number {
    display: flex;
    align-items: baseline;

    color: #fff;

    line-height: 1;
}


.stat-number .count,
.stat-number span {
    font-size: 32px;

    font-weight: 900;

    letter-spacing: -1px;
}


.stat-number b {
    margin-left: 2px;

    color: #e52d2d;

    font-size: 18px;

    font-weight: 900;
}


.stat-item p {
    margin: 7px 0 0;

    color: rgba(255, 255, 255, .52);

    font-size: 13px;

    font-weight: 600;

    letter-spacing: .6px;
}


.stat-divider {
    width: 1px;
    height: 40px;

    background: rgba(255, 255, 255, .17);
}


/* =========================================================
   FLOATING PROJECT CARD
========================================================= */

.hero-project-card {
    position: absolute;

    right: 2%;

    bottom: 7%;

    z-index: 6;

    display: flex;
    align-items: center;

    gap: 13px;

    min-width: 285px;

    padding: 14px 15px;

    color: #171717;

    background: rgba(255, 255, 255, .94);

    border: 1px solid rgba(255, 255, 255, .65);

    border-radius: 12px;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, .32);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    animation: floatingCard 4s ease-in-out infinite;
}


.project-card-icon {
    width: 44px;
    height: 44px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    background: #d62828;

    border-radius: 9px;

    font-size: 17px;
}


.project-card-content {
    flex: 1;
}


.project-card-content span {
    display: block;

    margin-bottom: 4px;

    color: #999;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.6px;
}


.project-card-content strong {
    display: block;

    color: #181818;

    font-size: 12px;

    font-weight: 800;
}


.project-card-arrow {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #d62828;

    border: 1px solid #e6e6e6;

    border-radius: 50%;

    font-size: 10px;
}


/* =========================================================
   INFINITE CONSTRUCTION ANIMATION
========================================================= */

.construction-elements {
    position: absolute;

    inset: 0;

    z-index: -1;

    overflow: hidden;

    pointer-events: none;
}


/* Moving blueprint lines */

.construction-line {
    position: absolute;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, .40),
            transparent
        );

    animation:
        blueprintMove 8s linear infinite;
}


.line-one {
    width: 320px;

    top: 20%;

    left: -320px;
}


.line-two {
    width: 240px;

    top: 69%;

    left: -240px;

    animation-delay: 2.5s;
}


.line-three {
    width: 180px;

    top: 43%;

    left: -180px;

    animation-delay: 5s;
}


/* Blueprint dots */

.blueprint-dot {
    position: absolute;

    width: 7px;
    height: 7px;

    background: #e52d2d;

    border-radius: 50%;

    opacity: .6;

    box-shadow:
        0 0 0 6px rgba(229, 45, 45, .08);

    animation:
        dotFloat 5s ease-in-out infinite;
}


.dot-one {
    top: 15%;
    left: 48%;
}


.dot-two {
    top: 72%;
    left: 54%;

    animation-delay: 1.5s;
}


.dot-three {
    top: 35%;
    right: 8%;

    animation-delay: 3s;
}


/* Blueprint circles */

.blueprint-circle {
    position: absolute;

    border: 1px solid rgba(255, 255, 255, .14);

    border-radius: 50%;

    animation:
        blueprintRotate 15s linear infinite;
}


.circle-one {
    width: 150px;
    height: 150px;

    right: -50px;
    top: 25%;
}


.circle-two {
    width: 80px;
    height: 80px;

    left: 51%;
    bottom: -30px;

    animation-direction: reverse;

    animation-duration: 10s;
}


/* Floating plus */

.floating-plus {
    position: absolute;

    color: #e52d2d;

    font-size: 28px;

    font-weight: 300;

    opacity: .35;

    animation:
        plusFloat 5s ease-in-out infinite;
}


.plus-one {
    left: 48%;
    top: 13%;
}


.plus-two {
    right: 8%;
    bottom: 18%;

    animation-delay: 2s;
}


/* Construction crosses */

.construction-cross {
    position: absolute;

    width: 18px;
    height: 18px;

    opacity: .28;

    animation:
        crossSpin 12s linear infinite;
}


.construction-cross::before,
.construction-cross::after {
    content: "";

    position: absolute;

    background: #fff;
}


.construction-cross::before {
    width: 100%;
    height: 1px;

    top: 50%;
    left: 0;
}


.construction-cross::after {
    width: 1px;
    height: 100%;

    top: 0;
    left: 50%;
}


.cross-one {
    top: 25%;
    left: 7%;
}


.cross-two {
    right: 15%;
    top: 74%;

    animation-delay: 2s;
}


/* =========================================================
   SCROLL INDICATOR
========================================================= */

.hero-scroll-indicator {
    position: absolute;

    left: 32px;
    bottom: 58px;

    z-index: 5;

    display: flex;
    align-items: center;

    gap: 12px;

    transform: rotate(-90deg);

    transform-origin: left center;

    color: rgba(255, 255, 255, .55);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;
}


.scroll-line {
    position: relative;

    width: 50px;
    height: 1px;

    background: rgba(255, 255, 255, .3);

    overflow: hidden;
}


.scroll-line::after {
    content: "";

    position: absolute;

    width: 18px;
    height: 1px;

    left: -18px;
    top: 0;

    background: #e52d2d;

    animation:
        scrollLine 2s linear infinite;
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes heroImageZoom {

    0% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1.10);
    }

}


@keyframes heroGlow {

    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(35px, 25px) scale(1.15);
    }

}


@keyframes floatingCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

}


@keyframes blueprintMove {

    0% {
        transform: translateX(0);

        opacity: 0;
    }

    15% {
        opacity: .7;
    }

    80% {
        opacity: .7;
    }

    100% {
        transform:
            translateX(calc(100vw + 500px));

        opacity: 0;
    }

}


@keyframes dotFloat {

    0%,
    100% {
        transform:
            translateY(0)
            scale(1);
    }

    50% {
        transform:
            translateY(-18px)
            scale(1.2);
    }

}


@keyframes blueprintRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


@keyframes plusFloat {

    0%,
    100% {
        transform:
            translateY(0)
            rotate(0deg);
    }

    50% {
        transform:
            translateY(-15px)
            rotate(90deg);
    }

}


@keyframes crossSpin {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


@keyframes scrollLine {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(70px);
    }

}


/* =========================================================
   RESPONSIVE - LARGE TABLET
========================================================= */

@media (max-width: 1199px) {

    .arsha-hero-section {
        min-height: 820px;

        padding: 105px 0 110px;
    }

    .hero-content-panel {
        width: 82%;
    }

    .heading-main {
        font-size: clamp(47px, 6vw, 76px);
    }

    .hero-main-heading strong {
        font-size: clamp(43px, 5.5vw, 70px);
    }

    .hero-project-card {
        right: 1%;
    }

}


/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 991px) {

    .arsha-hero-section {
        min-height: 800px;

        padding: 90px 0 100px;
    }

    .hero-overlay {
        background:

            linear-gradient(
                90deg,
                rgba(4, 5, 5, .95),
                rgba(4, 5, 5, .70)
            ),

            linear-gradient(
                180deg,
                rgba(0, 0, 0, .40),
                rgba(0, 0, 0, .80)
            );
    }

    .hero-content-panel {
        width: 100%;
    }

    .heading-main {
        font-size: clamp(46px, 8vw, 76px);
    }

    .hero-main-heading strong {
        font-size: clamp(42px, 7.5vw, 70px);
    }

    .hero-description {
        max-width: 680px;
    }

    .hero-project-card {
        right: 4%;
        bottom: 7%;
    }

}


/* =========================================================
   RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 767px) {

    .arsha-hero-section {
        min-height: 790px;

        padding: 80px 0 95px;
    }

    .hero-background img {
        object-position: 62% center;
    }

    .hero-overlay {
        background:

            linear-gradient(
                90deg,
                rgba(4, 5, 5, .96),
                rgba(4, 5, 5, .74)
            ),

            linear-gradient(
                180deg,
                rgba(0, 0, 0, .42),
                rgba(0, 0, 0, .85)
            );
    }

    .hero-eyebrow {
        font-size: 8px;

        letter-spacing: 1.6px;
    }

    .hero-list {
        gap: 6px;

        margin-bottom: 20px;
    }

    .hero-pill {
        padding: 7px 10px;

        font-size: 8px;
    }

    .hero-pill:nth-child(n+3) {
        display: none;
    }

    .heading-small {
        margin-bottom: 10px;

        font-size: 9px;

        letter-spacing: 2px;
    }

    .heading-main {
        font-size: clamp(38px, 10.5vw, 58px);

        line-height: 1.1;

        letter-spacing: -1.5px;
    }

    .hero-main-heading strong {
        font-size: clamp(35px, 9.8vw, 55px);

        line-height: 1.1;

        letter-spacing: -1.5px;
    }

    .hero-english-line {
        margin-top: 16px;
    }

    .hero-english-line p {
        font-size: 8px;

        letter-spacing: 2px;
    }

    .hero-description {
        margin-top: 18px;

        font-size: 14px;

        line-height: 1.9;
    }

    .hero-description-en {
        margin-top: 10px;

        font-size: 10px;
    }

    .hero-button {
        margin-top: 25px;

        gap: 9px;
    }

    .hero-main-btn,
    .hero-outline-btn {
        min-height: 52px;

        padding: 0 17px 0 20px;

        gap: 15px;
    }

    .hero-stats {
        gap: 17px;

        margin-top: 32px;

        padding-top: 21px;
    }

    .stat-number .count,
    .stat-number span {
        font-size: 26px;
    }

    .stat-item p {
        font-size: 8px;
    }

    .hero-project-card {
        display: none;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .hero-bottom-mark {
        bottom: 20px;

        font-size: 6px;

        letter-spacing: 1.3px;
    }

}


/* =========================================================
   RESPONSIVE - SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .arsha-hero-section {
        min-height: 770px;

        padding: 70px 0 85px;
    }

    .hero-content-panel h1 {
        letter-spacing: -1px;
    }

    .hero-pill {
        font-size: 7.5px;
    }

    .hero-button {
        flex-direction: column;

        align-items: stretch;
    }

    .hero-main-btn,
    .hero-outline-btn {
        width: 100%;
    }

    .hero-stats {
        justify-content: space-between;

        gap: 8px;
    }

    .stat-divider {
        height: 33px;
    }

    .stat-number .count,
    .stat-number span {
        font-size: 22px;
    }

    .stat-item p {
        font-size: 7px;

        white-space: nowrap;
    }

    .hero-bottom-mark {
        width: 100%;

        justify-content: center;

        font-size: 5.5px;
    }

}






/* =========================================================
   ARSHA INFRASTRUCTURE
   PREMIUM PRELOADER + OFFCANVAS + HEADER
========================================================= */


/* =========================================================
   PRELOADER
========================================================= */

.preloader {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    z-index: 9999999;
    cursor: default;
    overflow: hidden;
}

.preloader-inner {
    position: relative;
    z-index: 10;
    width: min(430px, 90%);
    text-align: center;
}


/* Brand */

.preloader-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 28px;
    color: var(--theme);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 5px;
}

.preloader-brand .brand-line {
    width: 35px;
    height: 1px;
    background: var(--theme);
    opacity: .45;
}


/* Logo */

.preloader-logo {
    width: 145px;
    height: 145px;
    margin: 0 auto 28px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 50%;

    background: #ffffff;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, .08),
        inset 0 0 0 8px rgba(0, 0, 0, .015);

    animation: preloaderLogo 2s ease-in-out infinite;
}

.preloader-logo img {
    width: 100%;
    max-width: 105px;
    height: auto;
    object-fit: contain;
}


/* Progress */

.preloader-progress {
    width: 100%;
    height: 3px;
    margin: 0 auto 18px;
    overflow: hidden;
    background: #eeeeee;
    border-radius: 50px;
}

.preloader-progress span {
    display: block;
    width: 35%;
    height: 100%;
    background: var(--theme);
    border-radius: inherit;
    animation: loadingProgress 1.8s ease-in-out infinite;
}


/* Loading Text */

.preloader-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
}

.preloader-loading span {
    color: #999999;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
}

.preloader-loading strong {
    color: var(--header);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}


/* Panels */

.preloader-panels {
    position: absolute;
    inset: 0;
    display: flex;
    z-index: 2;
}

.preloader-panel {
    width: 25%;
    height: 100%;
    background: #f7f7f7;
    border-right: 1px solid rgba(0, 0, 0, .025);
    transition:
        width .8s cubic-bezier(.77, 0, .175, 1),
        transform .8s cubic-bezier(.77, 0, .175, 1);
}


/* Loaded State */

.preloader.loaded .preloader-inner {
    opacity: 0;
    transform: translateY(-20px);
    transition: all .4s ease;
}

.preloader.loaded .preloader-panel {
    width: 0;
}


/* Animations */

@keyframes loadingProgress {

    0% {
        transform: translateX(-120%);
    }

    50% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(300%);
    }

}

@keyframes preloaderLogo {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }

}


/* Mobile */

@media (max-width: 767px) {

    .preloader-logo {
        width: 120px;
        height: 120px;
        padding: 17px;
        margin-bottom: 24px;
    }

    .preloader-logo img {
        max-width: 85px;
    }

    .preloader-brand {
        font-size: 9px;
        letter-spacing: 4px;
    }

    .preloader-brand .brand-line {
        width: 25px;
    }

    .preloader-loading span {
        font-size: 8px;
        letter-spacing: 2px;
    }

}


/* =========================================================
   BACK TO TOP
========================================================= */

.back-to-top {
    position: fixed;
    right: 28px;
    bottom: 100px;

    width: 30px;
    height: 30px;

    padding: 0;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ccc;
    color: var(--header);

    box-shadow: 0 12px 35px rgba(0, 0, 0, .12);

    z-index: 999;
    opacity: 0;
    visibility: hidden;

    transform: translateY(20px);

    transition:
        all .4s cubic-bezier(.4, 0, .2, 1);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--theme);
    border-color: var(--theme);
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .18);
}

.back-top-icon {
    font-size: 12px;
    transition: transform .3s ease;
}

.back-to-top:hover .back-top-icon {
    transform: translateY(-3px);
}

@media (max-width: 575px) {

    .back-to-top {
        width: 30px;
        height: 30px;
        right: 18px;
        bottom: 100px;
    }

}


/* =========================================================
   OFFCANVAS
========================================================= */

.offcanvas__info {
    position: fixed;
    top: 0;
    right: 0;

    width: 430px;
    max-width: 92%;

    height: 100vh;

    background: #ffffff;

    border-left: 1px solid rgba(0, 0, 0, .08);

    transform: translateX(calc(100% + 50px));

    transition:
        transform .55s cubic-bezier(.77, 0, .175, 1);

    z-index: 99999;

    overflow-y: auto;
    scrollbar-width: none;

    box-shadow: -20px 0 70px rgba(0, 0, 0, .10);
}

.offcanvas__info::-webkit-scrollbar {
    display: none;
}

.offcanvas__info.info-open {
    transform: translateX(0);
}


/* Wrapper */

.offcanvas__wrapper {
    min-height: 100%;
    padding: 32px;
}

.offcanvas__content {
    min-height: 100%;
}


/* Top */

.offcanvas__top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-bottom: 25px;

    border-bottom: 1px solid #eeeeee;
}

.offcanvas__logo {
    display: inline-flex;
    align-items: center;
}

.offcanvas__logo img {
    width: 135px;
    height: auto;
    object-fit: contain;
}


/* Close */

.offcanvas__close {
    width: 45px;
    height: 45px;

    border: 1px solid #e8e8e8;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;
    color: var(--header);

    cursor: pointer;

    transition: all .35s ease;
}

.offcanvas__close i {
    font-size: 16px;
}

.offcanvas__close:hover {
    background: var(--theme);
    border-color: var(--theme);
    color: #ffffff;
    transform: rotate(90deg);
}


/* =========================================================
   CONTACT
========================================================= */

.offcanvas__contact {
    margin-top: 8px;
}

.offcanvas__section-title {
    margin-bottom: 22px;
}

.offcanvas__section-title > span {
    display: block;
    margin-bottom: 5px;

    color: var(--theme);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
}

.offcanvas__section-title h3 {
    margin: 0;

    color: var(--header);

    font-size: 21px;
    font-weight: 800;
}


/* Contact List */

.offcanvas__contact-list {
    margin: 0;
    padding: 0;

    list-style: none;
}

.offcanvas__contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;

    padding: 17px 0;

    border-bottom: 1px solid #eeeeee;
}

.offcanvas__contact-list li:first-child {
    border-top: 1px solid #eeeeee;
}


/* Contact Icon */

.contact-icon {
    flex: 0 0 43px;

    width: 43px;
    height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: rgba(0, 0, 0, .035);

    color: var(--theme);

    transition: all .3s ease;
}

.offcanvas__contact-list li:hover .contact-icon {
    background: var(--theme);
    color: #ffffff;
    transform: translateY(-2px);
}

.contact-icon i {
    font-size: 15px;
}


/* Contact Text */

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-content span {
    color: #a0a0a0;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.contact-content a {
    color: var(--header);

    font-size: 14px;
    line-height: 1.55;
    font-weight: 600;

    transition: color .3s ease;
}

.contact-content a:hover {
    color: var(--theme);
}


/* =========================================================
   OFFCANVAS CTA
========================================================= */

.offcanvas__cta {
    margin-top: 25px;
}

.offcanvas-btn {
    position: relative;

    min-height: 58px;
    padding: 0 20px 0 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-radius: 10px;

    overflow: hidden;

    background: var(--theme);
    color: #ffffff;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: .3px;

    transition: all .35s ease;
}

.offcanvas-btn::before {
    content: "";

    position: absolute;
    top: 0;
    left: -100%;

    width: 100%;
    height: 100%;

    background: rgba(255, 255, 255, .12);

    transition: left .5s ease;
}

.offcanvas-btn:hover::before {
    left: 100%;
}

.offcanvas-btn span,
.offcanvas-btn i {
    position: relative;
    z-index: 2;
}

.offcanvas-btn i {
    width: 35px;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, .15);

    transition: transform .3s ease;
}

.offcanvas-btn:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, .12);
}

.offcanvas-btn:hover i {
    transform: translateX(4px);
}


/* =========================================================
   SOCIAL
========================================================= */

.offcanvas__social {
    margin-top: 30px;
}

.offcanvas__social > span {
    display: block;
    margin-bottom: 12px;

    color: #999999;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-links a {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #e8e8e8;
    border-radius: 50%;

    background: #ffffff;
    color: var(--header);

    font-size: 14px;

    transition: all .3s ease;
}

.social-links a:hover {
    background: var(--theme);
    border-color: var(--theme);
    color: #ffffff;
    transform: translateY(-4px);
}


/* =========================================================
   OFFCANVAS OVERLAY
========================================================= */

.offcanvas__overlay {
    position: fixed;
    inset: 0;

    width: 100%;
    height: 100%;

    background: rgba(10, 10, 10, .55);

    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);

    z-index: 900;

    opacity: 0;
    visibility: hidden;

    transition: all .4s ease;
}

.offcanvas__overlay.overlay-open {
    opacity: 1;
    visibility: visible;
}


/* =========================================================
   OFFCANVAS MOBILE
========================================================= */

@media (max-width: 575px) {

    .offcanvas__info {
        width: 390px;
    }

    .offcanvas__wrapper {
        padding: 24px 20px;
    }

    .offcanvas__intro {
        padding-top: 30px;
    }

    .offcanvas__intro h2 {
        font-size: 29px;
    }

}

@media (max-width: 400px) {

    .offcanvas__info {
        width: 100%;
        max-width: 100%;
    }

}


/* =========================================================
   MAIN HEADER
========================================================= */

.header-main {
    min-height: 88px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 42px;

    background: rgba(255, 255, 255, .96);

    border-bottom: 1px solid rgba(0, 0, 0, .07);

    box-shadow: 0 8px 30px rgba(0, 0, 0, .035);

    position: relative;
    z-index: 999;
}


/* Logo */

.header-left {
    display: flex;
    align-items: center;
}

.header-logo-2 {
    display: inline-flex;
    align-items: center;
}

.header-logo-2 img {
    width: 125px;
    height: auto;

    display: block;

    transition: transform .3s ease;
}

.header-logo-2:hover img {
    transform: scale(1.03);
}


/* Navigation */

.mean__menu-wrapper {
    flex: 1;

    display: flex;
    justify-content: center;

    margin: 0 40px;
}

.main-menu ul {
    display: flex;
    align-items: center;
    gap: 7px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.main-menu ul li {
    position: relative;
}

.main-menu ul li a {
    position: relative;

    display: inline-flex;
    align-items: center;

    padding: 34px 17px;

    color: var(--header);

    font-size: 12px;
    font-weight: 800;
    letter-spacing: .8px;

    transition: color .3s ease;
}

.main-menu ul li a::after {
    content: "";

    position: absolute;

    left: 17px;
    right: 17px;
    bottom: 24px;

    height: 2px;

    background: var(--theme);

    transform: scaleX(0);
    transform-origin: center;

    transition: transform .3s ease;
}

.main-menu ul li a:hover {
    color: var(--theme);
}

.main-menu ul li a:hover::after {
    transform: scaleX(1);
}


/* Header Right */

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-button .theme-btn {
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;

    padding: 0 21px;

    border-radius: 6px;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: .7px;

    transition: all .35s ease;
}

.header-button .theme-btn i {
    font-size: 12px;

    transition: transform .3s ease;
}

.header-button .theme-btn:hover i {
    transform: translateX(4px);
}


/* =========================================================
   MODERN HAMBURGER
========================================================= */

.sidebar__toggle {
    width: 46px;
    height: 46px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;

    border: 1px solid #e5e5e5;
    border-radius: 6px;

    background: #ffffff;

    cursor: pointer;

    transition: all .3s ease;
}

.sidebar__toggle span {
    display: block;

    width: 19px;
    height: 2px;

    background: var(--header);

    transition: all .3s ease;
}

.sidebar__toggle:hover {
    background: var(--theme);
    border-color: var(--theme);
}

.sidebar__toggle:hover span {
    background: #ffffff;
}


/* =========================================================
   RESPONSIVE HEADER
========================================================= */

@media (max-width: 1199px) {

    .header-main {
        padding: 0 25px;
    }

    .mean__menu-wrapper {
        margin: 0 20px;
    }

    .main-menu ul li a {
        padding-left: 11px;
        padding-right: 11px;
    }

    .main-menu ul li a::after {
        left: 11px;
        right: 11px;
    }

}


@media (max-width: 991px) {

    .header-main {
        min-height: 78px;
    }

    .mean__menu-wrapper {
        display: none;
    }

    .header-logo-2 img {
        width: 115px;
    }

    .header-button {
        display: none;
    }

    .header-right {
        gap: 10px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .preloader-logo,
    .preloader-progress span {
        animation: none;
    }

    *,
    *::before,
    *::after {
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
    }

}






/* =========================================================
   ARSHA PREMIUM ABOUT SECTION
========================================================= */

.arsha-about-section {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    padding: 115px 0;
}

/* subtle background detail */

.arsha-about-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    right: -280px;
    top: 80px;
    border: 1px solid rgba(196, 0, 0, 0.06);
    border-radius: 50%;
}

.arsha-about-section::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    left: -210px;
    bottom: -170px;
    border: 1px solid rgba(196, 0, 0, 0.05);
    border-radius: 50%;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.arsha-about-heading {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    margin-bottom: 65px;
}
.arsha-section-label {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 17px;

    color: #c40000;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
}

.label-line {
    width: 35px;
    height: 2px;
    background: #c40000;
}

.arsha-heading-left h2 {
    max-width: 750px;

    margin: 0;

    color: #171717;

    font-size: 52px;
    line-height: 1.1;
    font-weight: 700;

    letter-spacing: -2px;
}

.arsha-heading-left h2 span {
    display: block;
    color: #c40000;
}


/* Number */

.arsha-heading-number {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.arsha-heading-number span {
    color: #c40000;

    font-size: 54px;
    line-height: 1;

    font-weight: 700;
    letter-spacing: -3px;
}

.arsha-heading-number small {
    color: #999999;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2px;
}


/* =========================================================
   MAIN GRID
========================================================= */

.arsha-about-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: .95fr 1.2fr .8fr;

    gap: 50px;

    align-items: center;
}


/* =========================================================
   LEFT IMAGE
========================================================= */

.arsha-about-image-wrap {
    position: relative;
    padding-bottom: 60px;
}

.arsha-image-frame {
    position: relative;

    height: 500px;

    overflow: hidden;

    background: #eeeeee;
}

.arsha-image-frame::before {
    content: "";

    position: absolute;

    top: 15px;
    left: 15px;

    width: 100%;
    height: 100%;

    border: 1px solid #c40000;

    z-index: -1;
}

.arsha-image-frame img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .8s cubic-bezier(.2,.7,.2,1);
}

.arsha-about-image-wrap:hover .arsha-image-frame img {
    transform: scale(1.06);
}


/* Image overlay */

.arsha-image-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0) 50%,
            rgba(0,0,0,.35) 100%
        );

    pointer-events: none;
}


/* Corner icon */

.arsha-image-corner {
    position: absolute;

    right: 0;
    top: 0;

    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #c40000;

    color: #ffffff;

    font-size: 14px;
}

.arsha-image-corner i {
    transition: transform .4s ease;
}

.arsha-about-image-wrap:hover .arsha-image-corner i {
    transform: rotate(90deg);
}


/* =========================================================
   EXPERIENCE CARD
========================================================= */

.arsha-experience-card {
    position: absolute;

    left: -25px;
    bottom: 0;

    width: 230px;

    padding: 25px 25px 23px;

    background: #ffffff;

    border-top: 3px solid #c40000;

    box-shadow:
        0 18px 55px rgba(0,0,0,.13);

    z-index: 4;
}

.experience-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.experience-number {
    color: #151515;

    font-size: 52px;
    line-height: 1;

    font-weight: 700;

    letter-spacing: -3px;
}

.experience-number sup {
    color: #c40000;

    font-size: 25px;

    top: -15px;

    position: relative;
}

.experience-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff0f0;

    color: #c40000;

    font-size: 16px;
}

.arsha-experience-card p {
    margin: 12px 0 0;

    color: #777777;

    font-size: 12px;
    line-height: 1.6;
}


/* Vertical text */

.arsha-vertical-text {
    position: absolute;

    right: -45px;
    top: 80px;

    transform: rotate(90deg);

    transform-origin: center;

    color: #aaaaaa;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 2.5px;

    white-space: nowrap;
}


/* =========================================================
   CENTER CONTENT
========================================================= */

.arsha-about-content {
    padding: 5px 0;
}

.arsha-content-tag {
    display: flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 22px;

    color: #c40000;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.7px;
}

.arsha-content-tag i {
    font-size: 6px;

    animation: arshaPulse 1.8s infinite;
}


/* Main heading */

.arsha-about-content h3 {
    max-width: 600px;

    margin: 0 0 27px;

    color: #171717;

    font-size: 38px;
    line-height: 1.2;

    font-weight: 600;

    letter-spacing: -1.2px;
}

.arsha-about-content h3 strong {
    color: #c40000;
    font-weight: 700;
}


/* Paragraph */

.arsha-main-text {
    max-width: 620px;

    margin: 0;

    color: #444444;

    font-size: 16px;
    line-height: 1.85;

    font-weight: 500;
}

.arsha-secondary-text {
    max-width: 610px;

    margin: 16px 0 0;

    color: #888888;

    font-size: 14px;
    line-height: 1.85;
}


/* =========================================================
   FEATURE ITEMS
========================================================= */

.arsha-about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 20px;

    margin-top: 30px;
}

.arsha-feature-item {
    display: flex;
    align-items: flex-start;

    gap: 13px;

    padding: 17px 14px;

    border: 1px solid #eeeeee;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.arsha-feature-item:hover {
    transform: translateY(-5px);

    border-color: rgba(196,0,0,.2);

    box-shadow:
        0 12px 35px rgba(0,0,0,.07);
}


/* Feature icon */

.feature-icon {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff0f0;

    color: #c40000;

    font-size: 15px;

    transition:
        background .35s ease,
        color .35s ease;
}

.arsha-feature-item:hover .feature-icon {
    background: #c40000;
    color: #ffffff;
}

.feature-content h4 {
    margin: 0 0 5px;

    color: #222222;

    font-size: 14px;
    font-weight: 700;
}

.feature-content p {
    margin: 0;

    color: #999999;

    font-size: 12px;
    line-height: 1.6;
}


/* =========================================================
   BUTTON
========================================================= */

.arsha-about-action {
    display: flex;
    align-items: center;
    gap: 18px;

    margin-top: 35px;
}

.arsha-modern-btn {
    position: relative;

    display: inline-flex;
    align-items: center;

    gap: 20px;

    padding: 13px 13px 13px 21px;

    background: #c40000;

    color: #ffffff;

    text-decoration: none;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 1.3px;

    overflow: hidden;

    transition: .35s ease;
}

.arsha-modern-btn::before {
    content: "";

    position: absolute;

    top: 0;
    left: -100%;

    width: 100%;
    height: 100%;

    background: #171717;

    transition: left .4s ease;
}

.arsha-modern-btn span,
.arsha-modern-btn i {
    position: relative;
    z-index: 2;
}

.arsha-modern-btn i {
    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,.15);

    border-radius: 50%;

    transition: transform .35s ease;
}

.arsha-modern-btn:hover {
    color: #ffffff;
}

.arsha-modern-btn:hover::before {
    left: 0;
}

.arsha-modern-btn:hover i {
    transform: translateX(4px);
}


/* Action line */

.arsha-action-line {
    width: 45px;
    height: 1px;

    background: #dddddd;
}


/* =========================================================
   RIGHT IMAGE
========================================================= */

.arsha-about-right {
    position: relative;

    padding-bottom: 75px;
}

.arsha-right-main-image {
    position: relative;

    height: 390px;

    overflow: hidden;
}

.arsha-right-main-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .8s ease;
}

.arsha-about-right:hover .arsha-right-main-image img {
    transform: scale(1.06);
}


/* Image number */

.right-image-number {
    position: absolute;

    right: 0;
    bottom: 0;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #c40000;

    color: #ffffff;

    font-size: 11px;
    font-weight: 700;
}


/* =========================================================
   SMALL IMAGE
========================================================= */

.arsha-small-image {
    position: absolute;

    left: -42px;
    bottom: 0;

    width: 145px;
    height: 145px;

    padding: 6px;

    background: #ffffff;

    box-shadow:
        0 18px 45px rgba(0,0,0,.14);

    z-index: 3;
}

.arsha-small-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* Small image icon */

.small-image-icon {
    position: absolute;

    right: 6px;
    bottom: 6px;

    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #c40000;

    color: #ffffff;

    font-size: 11px;
}


/* =========================================================
   PROJECT CARD
========================================================= */

.arsha-project-card {
    position: absolute;

    right: -25px;
    bottom: 35px;

    display: flex;
    align-items: center;

    gap: 12px;

    width: 205px;

    padding: 14px;

    background: #ffffff;

    box-shadow:
        0 15px 45px rgba(0,0,0,.13);

    z-index: 4;
}

.project-card-icon {
    width: 40px;
    height: 40px;

    flex: 0 0 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #c40000;

    color: #ffffff;

    font-size: 14px;
}

.arsha-project-card span {
    display: block;

    margin-bottom: 3px;

    color: #c40000;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1.2px;
}

.arsha-project-card strong {
    display: block;

    color: #222222;

    font-size: 11px;
    line-height: 1.4;
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes arshaPulse {

    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: .5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }

}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1199px) {

    .arsha-about-section {
        padding: 90px 0;
    }

    .arsha-about-heading {
        margin-bottom: 50px;
    }

    .arsha-heading-left h2 {
        font-size: 44px;
    }

    .arsha-about-grid {
        grid-template-columns: .9fr 1.1fr;
        gap: 45px;
    }

    .arsha-about-right {
        grid-column: 1 / -1;

        max-width: 500px;

        width: 100%;

        margin: 20px auto 0;
    }

    .arsha-right-main-image {
        height: 420px;
    }

    .arsha-vertical-text {
        display: none;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 767px) {

  .arsha-about-right {
      display: none;
    }

    .arsha-about-section {
        padding: 75px 0;
    }

    .arsha-about-heading {
        align-items: flex-start;

        margin-bottom: 40px;
    }

    .arsha-heading-left h2 {
        font-size: 36px;
        letter-spacing: -1.2px;
    }

    .arsha-heading-number {
        display: none;
    }

    .arsha-about-grid {
        display: flex;
        flex-direction: column;

        gap: 55px;
    }

    .arsha-about-image-wrap,
    .arsha-about-content,
    .arsha-about-right {
        width: 100%;
    }

    .arsha-image-frame {
        height: 390px;
    }

    .arsha-experience-card {
        left: 15px;
    }

    .arsha-about-content h3 {
        font-size: 31px;
    }

    .arsha-main-text {
        font-size: 15px;
    }

    .arsha-about-features {
        grid-template-columns: 1fr;
    }

    .arsha-right-main-image {
        height: 350px;
    }

    .arsha-small-image {
        left: 15px;

        width: 125px;
        height: 125px;
    }

    .arsha-project-card {
        right: 10px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 480px) {

    .arsha-about-section {
        padding: 60px 0;
    }

    .arsha-section-label {
        font-size: 9px;
        letter-spacing: 1.8px;
    }

    .arsha-heading-left h2 {
        font-size: 30px;
    }

    .arsha-image-frame {
        height: 320px;
    }

    .arsha-experience-card {
        width: 200px;

        padding: 20px;
    }

    .experience-number {
        font-size: 43px;
    }

    .arsha-about-content h3 {
        font-size: 28px;
    }

    .arsha-main-text {
        font-size: 14px;
        line-height: 1.8;
    }

    .arsha-secondary-text {
        font-size: 13px;
    }

    .arsha-about-action {
        align-items: flex-start;
    }

    .arsha-action-line {
        display: none;
    }

    .arsha-right-main-image {
        height: 300px;
    }

    .arsha-small-image {
        width: 110px;
        height: 110px;
    }

    .arsha-project-card {
        width: 180px;

        padding: 11px;
    }

}










/* =========================================================
   ARSHA SIMPLE INNER HERO
========================================================= */

.arsha-simple-hero {
    position: relative;

    height: 330px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}


/* =========================================================
   OVERLAY
========================================================= */

.arsha-simple-hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, .78),
            rgba(0, 0, 0, .48)
        );
}


/* =========================================================
   CONTENT
========================================================= */

.arsha-simple-hero-content {
    position: relative;

    z-index: 2;

    padding-top: 15px;
}


/* =========================================================
   RED LINE
========================================================= */

.arsha-simple-hero-line {
    display: block;

    width: 42px;
    height: 3px;

    margin-bottom: 14px;

    background: #c40000;
}


/* =========================================================
   HEADING
========================================================= */

.arsha-simple-hero h1 {
    margin: 0;

    color: #ffffff;

    font-size: 52px;

    line-height: 1.1;

    font-weight: 700;

    letter-spacing: -1.5px;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.arsha-simple-breadcrumb {
    display: flex;
    align-items: center;

    gap: 12px;

    margin: 17px 0 0;
    padding: 0;

    list-style: none;
}


.arsha-simple-breadcrumb li {
    color: rgba(255, 255, 255, .65);

    font-size: 12px;

    font-weight: 500;
}


.arsha-simple-breadcrumb a {
    color: #ffffff;

    text-decoration: none;

    transition: color .3s ease;
}


.arsha-simple-breadcrumb a:hover {
    color: #e00000;
}


.arsha-simple-breadcrumb i {
    color: #c40000;

    font-size: 9px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .arsha-simple-hero {
        height: 290px;
    }


    .arsha-simple-hero h1 {
        font-size: 45px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .arsha-simple-hero {
        height: 250px;
    }


    .arsha-simple-hero-content {
        padding-left: 15px;
    }


    .arsha-simple-hero-line {
        width: 32px;
        height: 2px;

        margin-bottom: 11px;
    }


    .arsha-simple-hero h1 {
        font-size: 38px;

        letter-spacing: -1px;
    }


    .arsha-simple-breadcrumb {
        gap: 9px;

        margin-top: 13px;
    }


    .arsha-simple-breadcrumb li {
        font-size: 11px;
    }


    .arsha-simple-breadcrumb i {
        font-size: 8px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .arsha-simple-hero {
        height: 225px;
    }


    .arsha-simple-hero h1 {
        font-size: 34px;
    }

}










/* =====================================================
   PREMIUM WHATSAPP LIVE CHAT BUTTON
===================================================== */

.whatsapp-live {
    position: fixed;
    right: 24px;
    bottom: 25px;

    display: flex;
    align-items: center;
    gap: 12px;

    min-width: 205px;
    padding: 10px 12px 10px 10px;

    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(37, 211, 102, 0.18);
    border-radius: 50px;

    text-decoration: none;
    color: #161616;

    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.12),
        0 3px 12px rgba(37, 211, 102, 0.08);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    z-index: 9999;

    transition:
        transform 0.35s cubic-bezier(.2, .8, .2, 1),
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


/* =====================================================
   WHATSAPP ICON
===================================================== */

.whatsapp-icon {
    position: relative;

    width: 48px;
    height: 48px;
    min-width: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(
        145deg,
        #2eea76,
        #20c968
    );

    color: #ffffff;

    border-radius: 50%;

    font-size: 25px;

    box-shadow:
        0 6px 18px rgba(37, 211, 102, 0.30);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


/* =====================================================
   LIVE / ONLINE STATUS DOT
===================================================== */

.online-dot {
    position: absolute;

    right: 1px;
    bottom: 2px;

    width: 12px;
    height: 12px;

    background: #35e879;

    border: 2px solid #ffffff;

    border-radius: 50%;

    z-index: 2;

    animation: liveOnline 1.8s ease-out infinite;
}


/* First expanding ripple */

.online-dot::before {
    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    width: 100%;
    height: 100%;

    background: #35e879;

    border-radius: 50%;

    transform: translate(-50%, -50%);

    z-index: -1;

    animation: liveRipple 1.8s ease-out infinite;
}


/* Second staggered ripple */

.online-dot::after {
    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    width: 100%;
    height: 100%;

    background: #35e879;

    border-radius: 50%;

    transform: translate(-50%, -50%);

    z-index: -2;

    animation: liveRipple 1.8s ease-out infinite;

    animation-delay: 0.9s;
}


/* Dot breathing animation */

@keyframes liveOnline {

    0%,
    100% {
        transform: scale(1);

        box-shadow:
            0 0 0 0 rgba(53, 232, 121, 0.55);
    }

    50% {
        transform: scale(1.15);

        box-shadow:
            0 0 0 4px rgba(53, 232, 121, 0.12);
    }

}


/* Expanding ripple animation */

@keyframes liveRipple {

    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.65;
    }

    70% {
        transform: translate(-50%, -50%) scale(3.2);
        opacity: 0;
    }

    100% {
        transform: translate(-50%, -50%) scale(3.2);
        opacity: 0;
    }

}


/* =====================================================
   WHATSAPP TEXT
===================================================== */

.whatsapp-content {
    display: flex;
    flex-direction: column;

    line-height: 1.2;
}


/* Online text */

.whatsapp-small-text {
    font-size: 11px;

    font-weight: 600;

    color: #25b962;

    margin-bottom: 3px;

    letter-spacing: 0.2px;
}


/* Chat text */

.whatsapp-content strong {
    font-size: 14px;

    font-weight: 700;

    color: #171717;
}


/* =====================================================
   ARROW
===================================================== */

.whatsapp-arrow {
    width: 29px;
    height: 29px;

    margin-left: auto;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f1f7f3;

    color: #20bd5a;

    border-radius: 50%;

    font-size: 11px;

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        color 0.35s ease;
}


/* =====================================================
   MAIN BUTTON HOVER
===================================================== */

.whatsapp-live:hover {
    color: #161616;

    transform: translateY(-4px);

    border-color:
        rgba(37, 211, 102, 0.35);

    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.15),
        0 6px 20px rgba(37, 211, 102, 0.15);
}


/* Icon hover */

.whatsapp-live:hover .whatsapp-icon {
    transform:
        scale(1.06)
        rotate(-3deg);

    box-shadow:
        0 8px 25px rgba(37, 211, 102, 0.38);
}


/* Arrow hover */

.whatsapp-live:hover .whatsapp-arrow {
    transform: translateX(3px);

    background: #25D366;

    color: #ffffff;
}


/* =====================================================
   SUBTLE LIVE BORDER ANIMATION
===================================================== */

.whatsapp-live::after {
    content: "";

    position: absolute;

    inset: -2px;

    border-radius: 50px;

    border: 1px solid rgba(37, 211, 102, 0.18);

    pointer-events: none;

    animation:
        liveBorder 3s ease-in-out infinite;
}


@keyframes liveBorder {

    0%,
    100% {
        opacity: 0.25;

        transform: scale(1);
    }

    50% {
        opacity: 0.7;

        transform: scale(1.015);
    }

}


/* =====================================================
   MOBILE RESPONSIVE
===================================================== */

@media (max-width: 575px) {

    .whatsapp-live {
        right: 17px;
        bottom: 18px;

        min-width: auto;

        padding: 7px;

        border-radius: 50%;
    }


    .whatsapp-icon {
        width: 52px;
        height: 52px;

        min-width: 52px;

        font-size: 27px;
    }


    .whatsapp-content,
    .whatsapp-arrow {
        display: none;
    }

}


/* =====================================================
   EXTRA SMALL DEVICES
===================================================== */

@media (max-width: 380px) {

    .whatsapp-live {
        right: 14px;
        bottom: 15px;

        padding: 6px;
    }


    .whatsapp-icon {
        width: 48px;
        height: 48px;

        min-width: 48px;

        font-size: 25px;
    }

}






/* =====================================================
   ARSHA CENTERED CTA SECTION
===================================================== */

.arsha-cta-section {
    position: relative;

    width: 100%;

    padding: 100px 20px;

    background: #ffffff;

    overflow: hidden;

    text-align: center;
}


/* =====================================================
   SUBTLE BACKGROUND DECORATION
===================================================== */

.arsha-cta-section::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    top: -260px;
    left: 50%;

    transform: translateX(-50%);

    border-radius: 50%;

    background: rgba(210, 35, 42, 0.035);

    pointer-events: none;
}


.arsha-cta-section::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -90px;
    bottom: -90px;

    border-radius: 50%;

    border: 1px solid rgba(210, 35, 42, 0.08);

    pointer-events: none;
}


/* =====================================================
   CTA WRAPPER
===================================================== */

.arsha-cta-wrapper {
    position: relative;

    z-index: 2;

    max-width: 850px;

    margin: 0 auto;
}


/* =====================================================
   LABEL
===================================================== */

.arsha-cta-label {
    display: inline-block;

    margin-bottom: 18px;

    color: #d2232a;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.arsha-cta-label::before {
    content: "";

    display: inline-block;

    width: 28px;
    height: 2px;

    margin-right: 10px;

    vertical-align: middle;

    background: #d2232a;

    border-radius: 10px;
}


.arsha-cta-label::after {
    content: "";

    display: inline-block;

    width: 28px;
    height: 2px;

    margin-left: 10px;

    vertical-align: middle;

    background: #d2232a;

    border-radius: 10px;
}


/* =====================================================
   HEADING
===================================================== */

.arsha-cta-heading {
    margin: 0 auto 22px;

    color: #171717;

    font-size: clamp(42px, 5vw, 64px);

    line-height: 1.08;

    font-weight: 700;

    letter-spacing: -2.2px;
}


.arsha-cta-heading span {
    display: block;

    color: #d2232a;
}


/* =====================================================
   DESCRIPTION
===================================================== */

.arsha-cta-description {
    max-width: 720px;

    margin: 0 auto;

    color: #626262;

    font-size: 16px;

    line-height: 1.85;

    font-weight: 400;
}


/* =====================================================
   CTA BUTTON
===================================================== */

.arsha-cta-button {
    position: relative;

    display: inline-flex;

    align-items: center;

    justify-content: space-between;

    gap: 18px;

    min-width: 205px;

    margin-top: 32px;

    padding: 6px 7px 6px 23px;

    color: #ffffff;

    background: #d2232a;

    border-radius: 8px;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    overflow: hidden;

    box-shadow:
        0 10px 28px rgba(210, 35, 42, 0.20);

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}


/* Button shine */

.arsha-cta-button::before {
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 70%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,0.18),
            transparent
        );

    transform: skewX(-20deg);

    transition: left 0.6s ease;
}


.arsha-cta-button:hover::before {
    left: 140%;
}


/* =====================================================
   BUTTON ARROW
===================================================== */

.arsha-cta-button i {
    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 6px;

    color: #d2232a;

    background: #ffffff;

    font-size: 11px;

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        color 0.35s ease;
}


/* =====================================================
   BUTTON HOVER
===================================================== */

.arsha-cta-button:hover {
    color: #ffffff;

    background: #b91d24;

    transform: translateY(-4px);

    box-shadow:
        0 16px 35px rgba(210, 35, 42, 0.25);
}


.arsha-cta-button:hover i {
    color: #ffffff;

    background: #d2232a;

    transform: translateX(4px);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .arsha-cta-section {
        padding: 85px 20px;
    }


    .arsha-cta-heading {
        font-size: 52px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .arsha-cta-section {
        padding: 70px 18px;
    }


    .arsha-cta-heading {
        font-size: 43px;

        letter-spacing: -1.6px;
    }


    .arsha-cta-description {
        font-size: 15px;

        line-height: 1.75;
    }


    .arsha-cta-button {
        margin-top: 28px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .arsha-cta-section {
        padding: 60px 15px;
    }


    .arsha-cta-label {
        font-size: 10px;

        letter-spacing: 1.5px;
    }


    .arsha-cta-label::before,
    .arsha-cta-label::after {
        width: 18px;
    }


    .arsha-cta-heading {
        font-size: 36px;

        letter-spacing: -1.3px;

        line-height: 1.1;
    }


    .arsha-cta-description {
        font-size: 14px;

        line-height: 1.7;
    }


    .arsha-cta-button {
        min-width: 195px;

        padding-left: 20px;
    }

}



/* =========================================================
   ARSHA INFRASTRUCTURE
   PREMIUM TEAM SECTION
========================================================= */

.arsha-team-section {

    position: relative;

    background: #ffffff;

    overflow: hidden;
}


/* =========================================================
   SUBTLE BACKGROUND DETAIL
========================================================= */

.arsha-team-section::before {

    content: "";

    position: absolute;

    top: -180px;
    right: -180px;

    width: 420px;
    height: 420px;

    background: rgba(175, 0, 6, 0.035);

    border-radius: 50%;

    filter: blur(80px);

    pointer-events: none;
}


.arsha-team-section::after {

    content: "";

    position: absolute;

    bottom: -180px;
    left: -180px;

    width: 400px;
    height: 400px;

    background: rgba(175, 0, 6, 0.025);

    border-radius: 50%;

    filter: blur(80px);

    pointer-events: none;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.arsha-team-heading {

    position: relative;

    z-index: 2;

    max-width: 780px;

    margin: 0 auto 55px;
}


/* =========================================================
   EYEBROW
========================================================= */

.arsha-team-eyebrow {

    position: relative;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 14px;

    color: #af0006;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.arsha-team-eyebrow::before,
.arsha-team-eyebrow::after {

    content: "";

    width: 25px;

    height: 1px;

    background: #af0006;

    opacity: 0.6;
}


/* =========================================================
   MAIN HEADING
========================================================= */

.arsha-team-heading h2 {

    margin: 0;

    color: #151719;

    font-size: clamp(34px, 4vw, 48px);

    font-weight: 700;

    line-height: 1.15;

    letter-spacing: -1.2px;
}


.arsha-team-heading h2 span {

    color: #af0006;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.arsha-team-intro {

    max-width: 690px;

    margin: 18px auto 0;

    color: #73777c;

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================================
   TEAM GRID
========================================================= */

.arsha-team-row {

    position: relative;

    z-index: 2;

    row-gap: 35px;
}


/* =========================================================
   TEAM CARD
========================================================= */

.arsha-team-card {

    position: relative;

    height: 100%;

    background: #ffffff;

    border: 1px solid #eeeeee;

    overflow: hidden;

    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease,
        border-color 0.45s ease;
}


.arsha-team-card:hover {

    transform: translateY(-8px);

    border-color: rgba(175, 0, 6, 0.18);

    box-shadow:
        0 25px 60px rgba(20, 20, 20, 0.10);
}


/* =========================================================
   TEAM IMAGE — DESKTOP
========================================================= */

.arsha-team-image {

    position: relative;

    height: 410px;

    overflow: hidden;

    background: #eeeeee;
}


.arsha-team-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center top;

    display: block;

    transition:
        transform 0.7s cubic-bezier(.2, .7, .2, 1);
}


.arsha-team-card:hover .arsha-team-image img {

    transform: scale(1.055);
}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.arsha-team-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 48%,
            rgba(0, 0, 0, 0.08) 65%,
            rgba(0, 0, 0, 0.72) 100%
        );

    opacity: 0.75;

    transition: opacity 0.4s ease;
}


.arsha-team-card:hover .arsha-team-overlay {

    opacity: 0.95;
}


/* =========================================================
   TEAM NUMBER
========================================================= */

.arsha-team-number {

    position: absolute;

    top: 20px;
    left: 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 48px;
    height: 48px;

    color: #ffffff;

    background: rgba(15, 16, 18, 0.72);

    border: 1px solid rgba(255, 255, 255, 0.20);

    backdrop-filter: blur(8px);

    -webkit-backdrop-filter: blur(8px);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1px;

    transition:
        background 0.3s ease,
        border-color 0.3s ease;
}


.arsha-team-card:hover .arsha-team-number {

    background: #af0006;

    border-color: #af0006;
}


/* =========================================================
   SOCIAL ICONS
========================================================= */

.arsha-team-social {

    position: absolute;

    right: 20px;
    bottom: 20px;

    display: flex;

    align-items: center;

    gap: 7px;

    opacity: 0;

    transform: translateY(15px);

    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
}


.arsha-team-card:hover .arsha-team-social {

    opacity: 1;

    transform: translateY(0);
}


.arsha-team-social a {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 38px;
    height: 38px;

    color: #ffffff;

    background: rgba(20, 20, 20, 0.65);

    border: 1px solid rgba(255, 255, 255, 0.20);

    backdrop-filter: blur(8px);

    -webkit-backdrop-filter: blur(8px);

    font-size: 12px;

    text-decoration: none;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}


.arsha-team-social a:hover {

    background: #af0006;

    border-color: #af0006;

    transform: translateY(-3px);
}


/* =========================================================
   TEAM CONTENT
========================================================= */

.arsha-team-content {

    position: relative;

    padding: 25px 27px 27px;

    background: #ffffff;
}


/* =========================================================
   ROLE
========================================================= */

.arsha-team-role {

    display: block;

    margin-bottom: 7px;

    color: #af0006;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.7px;

    line-height: 1.4;

    text-transform: uppercase;
}


/* =========================================================
   NAME
========================================================= */

.arsha-team-content h3 {

    margin: 0;

    font-size: 21px;

    font-weight: 700;

    line-height: 1.35;
}


.arsha-team-content h3 a {

    color: #17191b;

    text-decoration: none;

    transition: color 0.3s ease;
}


.arsha-team-content h3 a:hover {

    color: #af0006;
}


/* =========================================================
   RED DETAIL LINE
========================================================= */

.arsha-team-line {

    position: relative;

    width: 100%;

    height: 1px;

    margin-top: 20px;

    background: #eeeeee;

    overflow: hidden;
}


.arsha-team-line::after {

    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 42px;
    height: 1px;

    background: #af0006;

    transition: width 0.4s ease;
}


.arsha-team-card:hover .arsha-team-line::after {

    width: 100%;
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (max-width: 1199px) {

    .arsha-team-image {

        height: 370px;
    }


    .arsha-team-content h3 {

        font-size: 19px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .arsha-team-heading {

        margin-bottom: 45px;
    }


    .arsha-team-image {

        height: 400px;
    }


    /*
       Show social icons on tablet because
       there is no reliable hover interaction.
    */

    .arsha-team-social {

        opacity: 1;

        transform: translateY(0);
    }

}


/* =========================================================
   MOBILE
   IMPORTANT:
   FULL IMAGE — DO NOT CROP PEOPLE
========================================================= */

@media (max-width: 767px) {

    .arsha-team-heading {

        margin-bottom: 35px;
    }


    .arsha-team-heading h2 {

        font-size: 32px;

        letter-spacing: -0.7px;
    }


    .arsha-team-intro {

        font-size: 15px;

        line-height: 1.7;
    }


    /*
       IMPORTANT FIX

       Do not use a fixed height on mobile.
       The image will keep its natural aspect ratio.
    */

    .arsha-team-image {

        height: auto;

        aspect-ratio: auto;

        overflow: hidden;
    }


    .arsha-team-image img {

        width: 100%;

        height: auto;

        min-height: 0;

        display: block;

        object-fit: contain;

        object-position: center center;

        transform: none;
    }


    /*
       Very subtle hover/interaction effect
       on mobile/tablet.
    */

    .arsha-team-card:hover .arsha-team-image img {

        transform: scale(1.02);
    }


    .arsha-team-content {

        padding: 22px 22px 24px;
    }


    .arsha-team-content h3 {

        font-size: 20px;
    }


    /*
       Social icons remain visible on mobile.
    */

    .arsha-team-social {

        right: 15px;

        bottom: 15px;

        opacity: 1;

        transform: translateY(0);
    }

}


/* =========================================================
   SMALL MOBILE
   480px AND BELOW
========================================================= */

@media (max-width: 480px) {

    .arsha-team-heading h2 {

        font-size: 29px;
    }


    .arsha-team-eyebrow {

        font-size: 11px;

        letter-spacing: 1.6px;
    }


    /*
       Keep natural image height.
       This prevents the person's head/body
       from being cropped.
    */

    .arsha-team-image {

        height: auto;

        aspect-ratio: auto;

        overflow: hidden;
    }


    .arsha-team-image img {

        width: 100%;

        height: auto;

        object-fit: contain;

        object-position: center center;

        display: block;
    }


    .arsha-team-number {

        top: 15px;

        left: 15px;

        width: 42px;

        height: 42px;
    }


    .arsha-team-social {

        right: 12px;

        bottom: 12px;

        gap: 5px;
    }


    .arsha-team-social a {

        width: 34px;

        height: 34px;

        font-size: 11px;
    }

}


/* =========================================================
   EXTRA SMALL DEVICES
========================================================= */

@media (max-width: 360px) {

    .arsha-team-heading h2 {

        font-size: 27px;
    }


    .arsha-team-intro {

        font-size: 14px;

        line-height: 1.65;
    }


    .arsha-team-content {

        padding: 20px 18px 22px;
    }


    .arsha-team-content h3 {

        font-size: 18px;
    }


    .arsha-team-role {

        font-size: 10px;

        letter-spacing: 1.4px;
    }


    .arsha-team-number {

        width: 38px;

        height: 38px;

        top: 12px;

        left: 12px;

        font-size: 10px;
    }

}