:root {
  --theme: rgb(255, 89, 29);
  --secondary: #132658;
}

.section-subtitle {
  font-weight: 600;
  font-size: 18px;
  line-height: 14px;
  text-transform: capitalize;
  color: var(--theme);
  display: flex;
  gap: 15px;
  align-items: center;
  white-space: nowrap;
}

@media only screen and (max-width: 1199px) {
  .section-subtitle {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .section-subtitle {
    flex-wrap: wrap;
    white-space: normal;
  }
}

.subtitle-line-last {
  width: 35px;
  height: 2px;
  display: inline-block;
  background-color: currentColor;
}

/* Section title styling with responsive font sizes */
.section-title {
  font-size: 50px;
  text-transform: unset;
  font-weight: 500 !important;
}

@media only screen and (max-width: 1919px) {
  .section-title {
    font-size: 45px;
  }
}

@media only screen and (max-width: 1399px) {
  .section-title {
    font-size: 40px;
  }
}

@media only screen and (max-width: 1199px) {
  .section-title {
    font-size: 36px;
  }
}

@media only screen and (max-width: 991px) {
  .section-title {
    font-size: 34px;
  }
}

@media only screen and (max-width: 767px) {
  .section-title {
    font-size: 32px;
  }
}

@media (max-width: 575px) {
  .section-title {
    font-size: 28px;
  }
}

/* Section spacing with responsive padding */
.section-spacing {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media only screen and (max-width: 1919px) {
  .section-spacing {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

@media only screen and (max-width: 1399px) {
  .section-spacing {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media only screen and (max-width: 1199px) {
  .section-spacing {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

html {
  --container-max-widths: 1320px;
}

@media only screen and (max-width: 1399px) {
  html {
    --container-max-widths: 1140px;
  }
}

@media only screen and (max-width: 1199px) {
  html {
    --container-max-widths: 960px;
  }
}

@media only screen and (max-width: 991px) {
  html {
    --container-max-widths: 720px;
  }
}

@media only screen and (max-width: 767px) {
  html {
    --container-max-widths: 540px;
  }
}

section {
  margin-bottom: -1px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
}

.ui-btn {
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding: 20px 34px;
  background-color: var(--theme);
  color: var(--white);
  border: 1px solid var(--theme);
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  text-transform: capitalize;
  white-space: nowrap;
}

@media only screen and (max-width: 1919px) {
  .ui-btn {
    padding: 16px 29px;
    font-size: 14px;
  }
}

.ui-btn:hover::before,
.ui-btn:focus::before {
  height: 100%;
}

.ui-btn:hover .btn-wrap .text-one,
.ui-btn:focus .btn-wrap .text-one {
  transform: translateY(-150%);
}

.ui-btn:hover .btn-wrap .text-two,
.ui-btn:focus .btn-wrap .text-two {
  top: 50%;
  transform: translateY(-50%);
  color: var(--black);
}

.ui-btn:after {
  display: block;
  clear: both;
  content: "";
}

.ui-btn::before {
  background-color: var(--white);
  content: "";
  width: 100%;
  height: 0;
  bottom: 0;
  position: absolute;
  transition: all 0.5s;
}

.ui-btn .btn-wrap {
  z-index: 1;
  float: left;
  overflow: hidden;
  position: relative;
  display: inline-block;
  border: none;
}

.ui-btn .btn-wrap .text-one,
.ui-btn .btn-wrap .text-two {
  display: flex;
  gap: 10px;
  align-items: center;
}

.ui-btn .btn-wrap .text-one {
  position: relative;
  color: var(--white);
  transition: all 0.5s;
}

.ui-btn .btn-wrap .text-two {
  position: absolute;
  top: 100%;
  color: var(--white);
  transition: all 0.5s;
}

.circle-text {
  width: 140px;
  height: 140px;
  position: relative;
  border-radius: 100px;
  background-color: var(--theme);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}

@media only screen and (max-width: 991px) {
  .circle-text {
    width: 120px;
    height: 120px;
  }
}

.circle-text::before {
  content: "";
  width: 100px;
  height: 100px;
  position: absolute;
  border-radius: 500px;
  background-color: var(--white);
}

.circle-text .text {
  width: 100%;
  height: 100%;
  padding: 10px;
  position: absolute;
  animation: textRotation 8s linear infinite;
}

@keyframes textRotation {
  to {
    transform: rotate(360deg);
  }
}

.circle-text .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.main-menu ul.mega-menu li:has(ul)>a:after {
  content: "";
}

.about-3-area {
  background: linear-gradient(135deg,
      #0d1835 0%,
      #101d40 30%,
      #142449 50%,
      #101d40 70%,
      #0d1835 100%);
  margin: 0 1rem;
  border-radius: 50px;
  ;
}


.about-3-area-inner {
  display: grid;
  gap: 40px 60px;
  grid-template-columns: 535px 1fr;
  justify-content: space-between;
  position: relative;
}

@media only screen and (max-width: 1199px) {
  .about-3-area-inner {
    grid-template-columns: 395px 1fr;
  }
}

@media only screen and (max-width: 991px) {
  .about-3-area-inner {
    grid-template-columns: 1fr;
  }
}

.about-3-shape-1 {
  position: absolute;
  top: 222px;
  left: calc(100% + 77px);
  width: -moz-max-content;
  width: max-content;
  z-index: -1;
}

.about-3-shape-1 img {
  animation: t-slide-Y 5s linear infinite;
}

.about-3-thumb-wrapper {
  max-width: 717px;
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr 285px;
}

@media only screen and (max-width: 767px) {
  .about-3-thumb-wrapper {
    grid-template-columns: 1fr;
  }
}

.about-3-content .title-wrapper {
  margin-top: 21px;
}

.about-3-content .text-wrapper {
  margin-top: 22px;
}

.about-3-content .feature-list {
  margin-top: 26px;
  display: grid;
  gap: 26px;
}

.about-3-content .feature-item {
  display: flex;
  gap: 10px 25px;
  position: relative;
}

@media (max-width: 575px) {
  .about-3-content .feature-item {
    flex-direction: column;
  }
}

.about-3-content .feature-item:not(:last-child):before {
  content: "";
  width: 1.5px;
  height: calc(100% + 26px);
  background-color: var(--black);
  opacity: 0.2;
  position: absolute;
  left: 24px;
  top: 25px;
}

@media (max-width: 575px) {
  .about-3-content .feature-item:not(:last-child):before {
    display: none;
  }
}

.about-3-content .feature-item .icon {
  width: 50px;
  min-width: 50px;
  height: 50px;
  border: 1px solid var(--black);
  color: var(--black);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-top: 7px;
  position: relative;
  background-color: var(--white);
}

@media (max-width: 575px) {
  .about-3-content .feature-item .icon {
    transform: rotate(90deg);
  }
}

.about-3-content .feature-item .icon.ui-bg-theme {
  background-color: var(--theme);
  border-color: transparent;
  color: var(--white);
}

.about-3-content .feature-item .title {
  font-weight: 500 !important;
  font-size: 24px;
  color: white;
  line-height: 1.33;
  text-transform: capitalize;
}

@media only screen and (max-width: 1199px) {
  .about-3-content .feature-item .title {
    font-size: 20px;
  }
}

.about-3-content .feature-item .text {
  margin-top: 4px;
  font-size: 17px;
  color: #cdcdcd;
}

.about-3-thumb {
  border-radius: 20px;
  overflow: hidden;
}

.about-3-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.about-3-info {
  display: flex;
  flex-direction: column;
}

.about-3-info .content {
  text-align: center;
  padding: 21px 0 22px;
}

.about-3-info .content .text {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
}

.about-3-info .content .text .number {
  font-family: var(--font_unbounded);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.33;
  text-transform: capitalize;
  color: var(--black);
}

.about-3-info .content .btn-wrapper {
  margin-top: 18px;
}

.about-3-info .client-group {
  display: flex;
  justify-content: center;
}

.about-3-info .client-group img {
  width: 60px;
  height: 60px;
  border: 2px solid var(--white);
  border-radius: 50%;
}

@media only screen and (max-width: 1919px) {
  .about-3-info .client-group img {
    width: 50px;
    height: 50px;
  }
}

.about-3-info .client-group>*:not(:first-child) {
  margin-left: -30px;
}

@media only screen and (max-width: 1919px) {
  .about-3-info .client-group>*:not(:first-child) {
    margin-left: -25px;
  }
}

.about-3-info .client-group .group-more {
  width: 60px;
  height: 60px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background-color: var(--black);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: var(--white);
}

@media only screen and (max-width: 1919px) {
  .about-3-info .client-group .group-more {
    width: 50px;
    height: 50px;
  }
}

.about-3-info .thumb {
  border-radius: 15px;
  overflow: hidden;
  flex-grow: 1;
}

.about-3-info .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.skills-area-inner {
  display: grid;
  gap: 40px 40px;
  grid-template-columns: 1fr 624px;
  padding-left: 40px;
}

@media only screen and (max-width: 1199px) {
  .skills-area-inner {
    grid-template-columns: 1fr 424px;
    gap: 40px 60px;
  }
}

@media only screen and (max-width: 991px) {
  .skills-area-inner {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .skills-area {
    margin: 0;
  }
}

.skill-content .title-wrapper {
  margin-top: 21px;
}

.skill-content .text-wrapper {
  margin-top: 22px;
}

.skill-content .progress-wrapper-box {
  margin-top: 15px;
}

.skill-content .progress-wrapper {
  display: grid;
  gap: 12px;
}

.skill-content .progress-box .progress-title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  position: relative;
}

.skill-content .progress-box p {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--black);
}

.skill-content .progress-box .progress-title .progress-category {
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  display: inline-block;
  color: black;
}

.skill-content .progress-box .progress-title .value {
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  color: white !important;
  display: inline-block;
  background-color: #132658;
  border-radius: 5px;
  padding: 4px 4px 4px 7px;
  position: absolute;
  top: 10px;
  transform: translateX(-100%);
}

.skill-content .progress-box .progress-title .value:before {
  content: "";
  width: 11px;
  height: 10px;
  background-color: var(--secondary);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
}

.skill-content .progress-box .progress {
  height: 30px;
  background-color: var(--white);
  border-radius: 10px;
  border: 1px dashed #0000007a;
  padding: 9px 11px;
}

.skill-content .progress-box .progress-bar {
  background-color: var(--theme);
  border-radius: 10px;
}

.skill-thumbs-wrapper {
  position: relative;
  max-width: 624px;
}

.skill-thumbs-wrapper .skill-thumb-1 {
  display: inline-block;
  border-radius: 20px;
  overflow: hidden;
  margin-left: 62px;
}

.skill-thumbs-wrapper .skill-thumb-2 {
  border: 10px solid var(--white);
  border-radius: 10px;
  display: inline-block;
  position: absolute;
  bottom: 29px;
  left: 0;
  width: 41%;
}

.skill-thumbs-wrapper .circle-text {
  position: absolute;
  top: 0;
  right: 0;
  width: 190px;
  height: 190px;
}

@media only screen and (max-width: 1199px) {
  .skill-thumbs-wrapper .circle-text {
    width: 140px;
    height: 140px;
  }
}

@media (max-width: 575px) {
  .skill-thumbs-wrapper .circle-text {
    right: 100px;
  }
}

.skill-thumbs-wrapper .circle-text::before {
  width: 120px;
  height: 120px;
}

@media only screen and (max-width: 1199px) {
  .skill-thumbs-wrapper .circle-text::before {
    width: 80px;
    height: 80px;
  }
}

.skill-thumbs-wrapper .skill-line-shape {
  position: absolute;
  width: 14px;
  height: 158px;
  left: 24px;
  top: 44px;
  background: var(--theme);
  border-radius: 20px;
  z-index: -1;
}

.skill-thumbs-wrapper .review-text {
  position: absolute;
  font-family: var(--font_unbounded);
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  text-transform: capitalize;
  color: var(--black);
  writing-mode: sideways-lr;
  bottom: 23px;
  right: 27px;
}


.skill-content .feature-wrapper {
  margin-top: 28px;
  display: grid;
  gap: 22px;
}

.skill-content .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 15px;
  background-color: var(--white, #ffffff);
  /* border: 1px solid #ECECEC; */
  border-radius: 14px;
  transition: all 0.35s ease;
}

/* .skill-content .feature-item:hover {
  border-color: transparent;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
} */

.skill-content .feature-item .feature-icon {
  flex: none;
  width: 54px;
  margin: 0px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(245, 180, 0, 0.12);
  color: var(--theme, #f5b400);
  transition: all 0.35s ease;
}

.skill-content .feature-item .feature-icon svg {
  width: 26px;
  height: 26px;
}

.skill-content .feature-item:hover .feature-icon {
  background-color: var(--theme, #f5b400);
  color: var(--white, #ffffff);
}

.skill-content .feature-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--black, #1a1a1a);
  margin-bottom: 6px;
  text-transform: capitalize;
}

.skill-content .feature-text {
  font-size: 17px;
  line-height: 1.6;
  color: #6b6b6b;
  margin: 0;
}

@media (max-width: 575px) {
  .skill-content .feature-item {
    flex-direction: column;
    gap: 14px;
  }
}

.theme-bg {
  background: linear-gradient(160deg, #ff4d12 0%, #ff601a 35%, #f66e2f 70%, #ff4400 100%);
}

.theme-bg-1 {
  background: linear-gradient(135deg,
      #0b1430 0%,
      #10224d 35%,
      #18366f 70%,
      #2a5698 100%);
}

.text-black {
  color: black;
}

.text-white {
  color: white;
}

.partner-area {
  padding: 80px 0;
}

.testimonial-area {
  padding-bottom: 80px;
}

@media (max-width: 767px) {
  .about-3-area {
    margin-top: 50px
  }
}


@media (max-width: 575px) {
  .skill-content {
    padding: 2rem 1rem !important;
  }
}