:root {
  --primary-color: #14D463;
  --navy-blue: #03529D;

  --background-color: #060C1A;
  --white: #ffff;
  --small-font: #00000033;
  --blue-line: #1648D8;
  --trusted-bg: #F4F6FA;
  --build-border: rgba(255, 255, 255, 0.06);
  --build-muted: #7d8490;


}

html,
body {
  font-family: "Manrope", sans-serif;
}

body,
button,
input,
textarea,
select,
option,
a,
p,
span,
div,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Manrope", sans-serif;
}

h1 {
  font-size: 32px;
  line-height: 1.09;
  letter-spacing: 1.03px;
}

h2 {
  font-size: 28px;
  line-height: 1.09;
  letter-spacing: 1.03px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 22px;
}

@media (max-width: 767px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 21px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 25px;
  }

  h2 {
    font-size: 22px;
  }

  h3 {
    font-size: 19px;
  }
}

p {
  font-size: 16px;
  color: #6B7280;

}

/* =========navbar=============== */
.navbar-main {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #ffffff;
  border-bottom: 1px solid #eeeeee;
}

.navbar-inner {
  /* width: 100%; */
  /* min-height: 58px; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 30px;
  background: #ffffff;
}

.navbar-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.navbar-logo-img {
  width: 245px;
  height: auto;
  /* display: block; */
}

.navbar-menu-wrap {
  display: flex;
  align-items: center;
  gap: 30px;
}

.navbar-menu-link {
  position: relative;
  color: #111111;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: 0.3s ease;
}

.navbar-menu-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: 0.3s ease;
}

.navbar-menu-link:hover {
  color: var(--primary-color);
}

.navbar-menu-link:hover::after {
  width: 100%;
}

.navbar-quote-btn {
  min-width: 115px;
  min-height: 36px;
  padding: 10px 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background: var(--primary-color);
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.3s ease;
}

.navbar-quote-btn:hover {
  color: #ffffff;
  background: var(--primary-color);
  transform: translateY(-1px);
}

.navbar-mobile-btn {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  cursor: pointer;
}

.navbar-mobile-btn span {
  width: 24px;
  height: 2px;
  display: block;
  background: #111111;
  transition: 0.3s ease;
}

.navbar-mobile-btn.navbar-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar-mobile-btn.navbar-active span:nth-child(2) {
  opacity: 0;
}

.navbar-mobile-btn.navbar-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.navbar-mobile-menu {
  display: none;
  padding: 10px 20px 20px;
  background: #ffffff;
  border-top: 1px solid #eeeeee;
}

.navbar-mobile-menu.navbar-open {
  display: block;
}

.navbar-mobile-link {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111111;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  /* border-bottom: 1px solid #eeeeee; */
}

.navbar-mobile-link:hover {
  color: var(--primary-color);
}

.navbar-mobile-quote {
  width: 100%;
  min-height: 46px;
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: var(--primary-color);
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
}

@media (max-width: 991.98px) {
  .navbar-inner {
    min-height: 64px;
    padding: 0 20px;
  }

  .navbar-menu-wrap {
    gap: 20px;
  }

  .navbar-logo-img {
    width: 155px;
  }
}

@media (max-width: 767.98px) {
  /* .navbar-inner {
    min-height: 64px;
    padding: 0 18px;
  } */

  .navbar-menu-wrap {
    display: none;
  }

  .navbar-mobile-btn {
    display: flex;
  }

  .navbar-logo-img {
    width: 204px;
    height: auto;
  }
}

/* =============navbar-end================ */
/* ===========banner============= */
.aa-page {
  color: #fff;
}

.aa-page * {
  box-sizing: border-box;
}

.aa-hero {
  width: 100%;
  min-height: 550px;
  position: relative;
  display: grid;
  grid-template-columns: 59.5% 40.5%;
  overflow: hidden;
  background: #07111f;
}

.aa-left {
  min-height: 550px;
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  padding: 53px 56px 82px;
  background: #060c1a;
}

.aa-kicker {
  margin: 0 0 18px;
  color: var(--primary-color);

  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 3.2px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(14px);
  animation: aaFadeUp 0.75s ease 0.15s forwards;
}

.aa-title {
  margin: 0;
  max-width: 470px;
  font-size: 50px;
  /* line-height: 1.03; */
  font-weight: 800;
  /* letter-spacing: 1.3px; */
  text-transform: uppercase;
}

.aa-title-row {
  display: block;
  overflow: hidden;
}

.aa-title-row span {
  display: inline-block;
  transform: translateY(115%);
  animation: aaReveal 0.85s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.aa-title-row:nth-child(1) span {
  animation-delay: 0.2s;
}

.aa-title-row:nth-child(2) span {
  animation-delay: 0.32s;
}

.aa-title-row:nth-child(3) span {
  animation-delay: 0.44s;
}

.aa-title-row:nth-child(4) span {
  animation-delay: 0.56s;
}

.aa-title-blue {
  color: var(--navy-blue);
}

.aa-description {
  width: 100%;
  max-width: 326px;
  margin: 72px 0 0;
  color: rgba(207, 218, 231, 0.52);
  line-height: 1.72;
  opacity: 0;
  transform: translateY(18px);
  animation: aaFadeUp 0.8s ease 0.76s forwards;
}

.aa-actions {
  margin-top: 29px;
  display: flex;
  align-items: center;
  gap: 13px;
  opacity: 0;
  transform: translateY(18px);
  animation: aaFadeUp 0.8s ease 0.92s forwards;
}

.aa-primary-btn,
.aa-text-btn {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.25px;
  transition: 0.25s ease;
}

.aa-primary-btn {
  min-width: 154px;
  padding: 0 18px;
  border: 1px solid #0f6dc1;
  border-radius: 3px;
  background: var(--navy-blue);
  ;
  color: #fff;
}

.aa-primary-btn:hover {
  transform: translateY(-2px);
  background: var(--navy-blue);
  ;
  box-shadow: 0 10px 28px rgba(14, 102, 183, 0.26);
}

.aa-text-btn {
  gap: 8px;
  padding: 0 7px 2px;
  color: #fff;
  border-bottom: 1px solid #fff;
}

.aa-text-btn:hover {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
  transform: translateX(4px);
}

.aa-text-arrow {
  font-size: 16px;
  line-height: 1;
}

.aa-est {
  position: absolute;
  right: 33%;
  bottom: 72px;
  margin: 0;
  color: rgba(211, 221, 232, 0.16);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.aa-side-decor {
  position: absolute;
  left: 18px;
  top: 214px;
  width: 2px;
  height: 97px;
}

.aa-side-decor:before,
.aa-side-decor:after {
  content: "";
  position: absolute;
  left: 0;
  width: 1px;
  background: var(--primary-color);
}

.aa-side-decor:before {
  top: 0;
  height: 43px;
}

.aa-side-decor:after {
  bottom: 0;
  height: 43px;
}

.aa-side-decor span {
  position: absolute;
  top: 48px;
  left: -1px;
  width: 3px;
  height: 3px;
  background: var(--primary-color);
  box-shadow: 0 0 8px rgba(20, 212, 99, 0.8);
}

.aa-right {
  min-height: 550px;
  position: relative;
  overflow: hidden;
  background: url("../img/aa-electrical-bg.png") center center / cover no-repeat;
}

.aa-right-image {
  display: none;
}

.aa-right-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to bottom,
      rgba(4, 12, 25, 0.72) 0%,
      rgba(4, 12, 25, 0.25) 20%,
      rgba(4, 12, 25, 0) 42%),
    linear-gradient(to top,
      rgba(4, 12, 25, 0.85) 0%,
      rgba(4, 12, 25, 0.3) 18%,
      rgba(4, 12, 25, 0) 40%),
    linear-gradient(to right,
      rgba(4, 12, 25, 0.95) 0%,
      rgba(4, 12, 25, 0.82) 16%,
      rgba(4, 12, 25, 0.38) 35%,
      rgba(4, 12, 25, 0) 55%),
    linear-gradient(to left,
      rgba(4, 12, 25, 0.55) 0%,
      rgba(4, 12, 25, 0.15) 15%,
      rgba(4, 12, 25, 0) 32%);
}

.aa-grid {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(36, 115, 181, 0.55) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 115, 181, 0.55) 1px, transparent 1px);
  background-size: 62px 62px;
  pointer-events: none;
}

.aa-grid-circle {
  position: absolute;
  z-index: 4;
  top: 104px;
  right: 67px;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(0, 229, 162, 0.3);
  border-radius: 50%;
  opacity: 0.75;
}

.aa-grid-circle:before,
.aa-grid-circle:after {
  content: "";
  position: absolute;
  background: rgba(0, 229, 162, 0.27);
}

.aa-grid-circle:before {
  left: 50%;
  top: -8px;
  width: 1px;
  height: 44px;
  transform: translateX(-50%);
}

.aa-grid-circle:after {
  top: 50%;
  left: -8px;
  width: 44px;
  height: 1px;
  transform: translateY(-50%);
}

.aa-grid-code {
  position: absolute;
  z-index: 4;
  top: 112px;
  right: 25px;
  color: rgba(0, 229, 162, 0.31);
  font-size: 10px;
  line-height: 1.25;
}

.aa-bottom-blur {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 36px;
  z-index: 17;
  height: 22px;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(7, 17, 31, 0.72), rgba(7, 17, 31, 0));
  filter: blur(5px);
}

.aa-bottom-ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  height: 36px;
  overflow: hidden;
  border-top: 3px solid #14d463;
  background: #0d66b4;
  box-shadow:
    0 -10px 28px rgba(0, 82, 150, 0.24),
    0 -1px 13px rgba(0, 240, 168, 0.14);
}

.aa-bottom-ticker:before,
.aa-bottom-ticker:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 3;
  pointer-events: none;
}

.aa-bottom-ticker:before {
  left: 0;
  background: linear-gradient(90deg, #0d66b4 16%, rgba(13, 102, 180, 0));
}

.aa-bottom-ticker:after {
  right: 0;
  background: linear-gradient(270deg, #0d66b4 16%, rgba(13, 102, 180, 0));
}

.aa-ticker-track {
  width: max-content;
  min-width: 200%;
  height: 100%;
  display: flex;
  align-items: center;
  animation: aaTicker 24s linear infinite;
  will-change: transform;
}

.aa-ticker-set {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.aa-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-right: 56px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.aa-ticker-dot {
  width: 4px;
  height: 4px;
  flex: 0 0 4px;
  transform: rotate(45deg);
  background: var(--primary-color);
  box-shadow: 0 0 5px rgba(20, 212, 99, 0.8);
}

@keyframes aaReveal {
  to {
    transform: translateY(0);
  }
}

@keyframes aaFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes aaImageZoom {
  from {
    transform: scale(1.04);
  }

  to {
    transform: scale(1.09) translate3d(-1.2%, 0.6%, 0);
  }
}

@keyframes aaTicker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 767.98px) {
  .aa-hero {
    display: block;
    min-height: 760px;
  }

  .aa-right {
    position: absolute;
    inset: 0;
    min-height: 760px;
  }

  .aa-right-overlay {
    background:
      linear-gradient(to bottom,
        rgba(4, 12, 25, 0.72) 0%,
        rgba(4, 12, 25, 0.25) 20%,
        rgba(4, 12, 25, 0) 42%),
      linear-gradient(to top,
        rgba(4, 12, 25, 0.85) 0%,
        rgba(4, 12, 25, 0.3) 18%,
        rgba(4, 12, 25, 0) 40%),
      linear-gradient(to right,
        rgba(4, 12, 25, 0.95) 0%,
        rgba(4, 12, 25, 0.82) 16%,
        rgba(4, 12, 25, 0.38) 35%,
        rgba(4, 12, 25, 0) 62%),
      linear-gradient(to left,
        rgba(4, 12, 25, 0.55) 0%,
        rgba(4, 12, 25, 0.15) 15%,
        rgba(4, 12, 25, 0) 32%);
  }

  .aa-left {
    min-height: 760px;
    padding: 48px 28px 92px;
    background: transparent;
  }

  .aa-title {
    font-size: 42px;
  }

  .aa-description {
    margin-top: 30px;
    color: rgba(220, 230, 239, 0.68);
  }

  .aa-est {
    left: 28px;
    right: auto;
    bottom: 74px;
  }

  .aa-side-decor {
    display: none;
  }
}

@media (max-width: 575.98px) {

  .aa-hero,
  .aa-right,
  .aa-left {
    min-height: 710px;
  }

  .aa-left {
    padding: 42px 20px 88px;
  }

  .aa-title {
    font-size: 36px;
    line-height: 1;
    letter-spacing: 1px;
  }

  .aa-description {
    margin-top: 30px;
    font-size: 15px;
  }

  .aa-actions {
    flex-wrap: wrap;
  }

  .aa-est {
    left: 20px;
  }

  .aa-ticker-item {
    margin-right: 38px;
  }
}

/* =========banner end============ */
/* ===============about============== */
.bb-section {
  background: #f4f6fa;

}

.bb-section * {
  box-sizing: border-box;
}

.bb-wrap {
  width: calc(100% - 40px);
  min-height: 760px;
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: center;
  gap: 0;
}

/* LEFT VISUAL */
.bb-visual {
  position: relative;
  min-height: 690px;
}

.bb-main-img-wrap {
  position: absolute;
  left: 0;
  top: 70px;
  width: 390px;
  height: 500px;
  overflow: hidden;
  background: #dbe4ee;
  box-shadow: 0 22px 48px rgba(18, 33, 54, 0.08);
  opacity: 0;
  z-index: 3;
  transform: translateY(28px) scale(0.985);
  animation: bbRevealImg 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) 0.15s forwards;
}

.bb-main-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  animation: bbFloatMain 6s ease-in-out 1.2s infinite alternate;
}

.bb-year-card {
  position: absolute;
  left: 52%;
  top: 270px;
  width: 145px;
  height: 100px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 24px;
  background: var(--primary-color);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.46);
  box-shadow: 0 14px 30px rgba(21, 211, 107, 0.22);
  opacity: 0;
  transform: translateX(20px);
  animation: bbSlideCard 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) 0.65s forwards;
}

.bb-year {
  font-size: 34px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.bb-established {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.9;
}

.bb-small-img-wrap {
  position: absolute;
  left: 54%;
  top: 382px;
  width: 235px;
  height: 225px;
  z-index: 4;
  overflow: hidden;
  border: 4px solid #fff;
  background: #fff;
  box-shadow: 0 22px 42px rgba(26, 43, 63, 0.12);
  opacity: 0;
  transform: translateY(20px);
  animation: bbRevealImg 0.85s cubic-bezier(0.2, 0.8, 0.2, 1) 0.48s forwards;
}

.bb-small-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  animation: bbFloatSmall 6.5s ease-in-out 1.6s infinite alternate;
}

.bb-decor-one {
  position: absolute;
  left: 0;
  top: 515px;
  color: #e5eaf4;
  font-size: 145px;
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: -13px;
  z-index: 1;
  user-select: none;
  white-space: nowrap;
  opacity: 0.92;
}

/* RIGHT CONTENT */
.bb-content {
  position: relative;
  padding: 40px 20px 40px 28px;
}

.bb-eyebrow {
  margin: 0 0 30px;
  padding-left: 44px;
  position: relative;
  color: var(--primary-color);
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(12px);
  animation: bbFadeUp 0.65s ease 0.2s forwards;
}

.bb-eyebrow::before {
  content: "";
  position: absolute;
  left: -10px;
  top: -18px;
  width: 3px;
  height: 142px;
  border-radius: 0;
  background: linear-gradient(to bottom,
      #13ce6b 0%,
      #13ce6b 70%,
      rgba(19, 206, 107, 0) 100%);
  transform: none;
  box-shadow: none;
}

.bb-title {
  margin: 0;
  max-width: 720px;
  color: #111827;
  /* font-size: clamp(36px, 4vw, 60px); */
  /* line-height: 1.09; */
  font-weight: 700;
  /* letter-spacing: 1.03px; */
}

.bb-title-line {
  display: block;
  overflow: hidden;
}

.bb-title-line span {
  display: inline-block;
  transform: translateY(115%);
  animation: bbTextReveal 0.78s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.bb-title-line:nth-child(1) span {
  animation-delay: 0.28s;
}

.bb-title-line:nth-child(2) span {
  animation-delay: 0.39s;
}

.bb-title-line:nth-child(3) span {
  animation-delay: 0.5s;
}

.bb-copy {
  max-width: 520px;
  margin: 24px 0 0;
  color: #7d8796;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(14px);
  animation: bbFadeUp 0.7s ease 0.64s forwards;
}

.bb-copy+.bb-copy {
  margin-top: 18px;
  animation-delay: 0.74s;
}

.bb-stats {
  max-width: 520px;
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  opacity: 0;
  transform: translateY(14px);
  animation: bbFadeUp 0.75s ease 0.85s forwards;
}

.bb-stat {
  min-width: 0;
}

.bb-stat-number {
  margin: 0;
  color: var(--primary-color);
  font-size: 36px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.6px;
}

.bb-stat-label {
  margin: 9px 0 0;
  color: #7b8490;
  font-size: 15px;
  line-height: 1.35;
}

.bb-link {
  width: max-content;
  margin-top: 34px;
  padding-bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  color: #111827;
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.85px;
  text-decoration: none;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  animation: bbFadeUp 0.7s ease 0.98s forwards;
}

.bb-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 185px;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.bb-link:hover::after {
  width: 100%;
}

.bb-arrow {
  font-size: 20px;
  transition: transform 0.25s ease;
}

.bb-link:hover .bb-arrow {
  transform: translateX(5px);
}

/* Animations */
@keyframes bbFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bbTextReveal {
  to {
    transform: translateY(0);
  }
}

@keyframes bbRevealImg {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes bbSlideCard {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bbFloatMain {
  from {
    transform: scale(1.01) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.03) translate3d(0, -5px, 0);
  }
}

@keyframes bbFloatSmall {
  from {
    transform: scale(1.01) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.035) translate3d(0, -4px, 0);
  }
}

@media (min-width: 1200px) and (max-width: 1600px) {
  .bb-wrap {
    width: calc(100% - 40px);
    grid-template-columns: 50% 50%;
  }

  .bb-visual {
    min-height: 690px;
  }

  .bb-main-img-wrap {
    left: 4%;
    top: 72px;
    width: 390px;
    height: 500px;
  }

  .bb-year-card {
    left: 35%;
    top: 270px;
    width: 145px;
    height: 100px;
  }

  .bb-small-img-wrap {
    left: 51%;
    top: 382px;
    width: 235px;
    height: 225px;
  }

  .bb-decor-one {
    left: 4%;
    top: 527px;
    font-size: 100px;
    line-height: 0.78;
    z-index: 1;
  }

  .bb-content {
    padding: 40px 20px 40px 34px;
  }
}

/* Reference screenshot fine tuning */
@media (min-width: 1200px) {
  .bb-decor-one {
    left: 0;
    top: 515px;
    font-size: 145px;
    line-height: 0.82;
    letter-spacing: -13px;
    z-index: 1;
  }

  .bb-main-img-wrap {
    z-index: 3;
  }

  .bb-content {
    padding-top: 58px;
  }

  .bb-eyebrow {
    padding-left: 6px;
    margin-bottom: 30px;
  }

  .bb-eyebrow::before {
    left: -15px;
    top: -4px;
    /* width: 3px; */
    height: 177px;
  }
}

/* Laptop / small desktop */
@media (max-width: 1199.98px) {
  .bb-section {
    min-height: 680px;
  }

  .bb-wrap {
    width: calc(100% - 40px);
    min-height: 680px;
    grid-template-columns: 50% 50%;
    gap: 0;
  }

  .bb-visual {
    min-height: 650px;
  }

  .bb-main-img-wrap {
    width: 340px;
    height: 450px;
    top: 72px;
    left: 5%;
  }

  .bb-year-card {
    left: 44%;
    top: 255px;
    width: 132px;
    height: 92px;
  }

  .bb-small-img-wrap {
    left: 54%;
    top: 360px;
    width: 210px;
    height: 205px;
  }

  .bb-decor-one {
    left: 0;
    top: 535px;
    font-size: 84px;
    line-height: 1;
    letter-spacing: -6px;
    z-index: 6;
  }

  .bb-title {
    /* font-size: clamp(38px, 4.2vw, 52px); */
  }


  .bb-stat-number {
    font-size: 32px;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .bb-decor-one {
    left: 0;
    top: 485px;
    font-size: 125px;
    line-height: 0.82;
    letter-spacing: -11px;
    z-index: 1;
  }

  .bb-eyebrow {
    padding-left: 36px;
  }

  .bb-eyebrow::before {
    height: 125px;
    top: -16px;
  }
}

/* Tablet */
@media (max-width: 991.98px) {
  .bb-section {
    min-height: auto;
    padding: 55px 0;
  }

  .bb-wrap {
    width: calc(100% - 40px);
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .bb-visual {
    min-height: 560px;
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
  }

  .bb-main-img-wrap {
    left: 4%;
    top: 10px;
    width: 390px;
    height: 480px;
  }

  .bb-year-card {
    left: auto;
    right: 38%;
    top: 210px;
    width: 140px;
    height: 96px;
  }

  .bb-small-img-wrap {
    left: auto;
    right: 3%;
    top: 320px;
    width: 240px;
    height: 220px;
  }

  .bb-decor-one {
    left: 2%;
    top: 500px;
    font-size: 82px;
    line-height: 1;
    letter-spacing: -6px;
    z-index: 6;
  }

  .bb-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 15px 0 0;
  }

  .bb-title {
    max-width: 650px;
  }

  .bb-copy {
    max-width: 680px;
  }

  .bb-stats {
    max-width: 620px;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  .bb-section {
    padding: 42px 0 48px;
  }

  .bb-wrap {
    width: calc(100% - 32px);
    display: block;
  }

  .bb-visual {
    min-height: 445px;
  }

  .bb-main-img-wrap {
    left: 0;
    top: 0;
    width: 74%;
    height: 350px;
  }

  .bb-year-card {
    left: auto;
    right: 2%;
    top: 155px;
    width: 118px;
    height: 82px;
    padding: 0 16px;
  }

  .bb-year {
    font-size: 28px;
  }

  .bb-established {
    font-size: 11px;
    letter-spacing: 1px;
  }

  .bb-small-img-wrap {
    left: auto;
    right: 0;
    top: 245px;
    width: 48%;
    height: 180px;
  }

  .bb-decor-one {
    left: 0;
    top: 360px;
    font-size: 68px;
    line-height: 1;
    letter-spacing: -5px;
    z-index: 6;
  }

  .bb-content {
    padding: 24px 0 0;
  }

  .bb-eyebrow {
    font-size: 15px;
    margin-bottom: 18px;
  }

  .bb-title {
    max-width: 100%;
    /* font-size: clamp(34px, 8vw, 46px); */
  }

  .bb-copy {
    max-width: 100%;
    line-height: 1.72;
  }

  .bb-stats {
    max-width: 100%;
    gap: 14px;
    margin-top: 30px;
  }

  .bb-stat-number {
    font-size: 30px;
  }

  .bb-stat-label {
    font-size: 15px;
  }

  .bb-link {
    margin-top: 32px;
    font-size: 15px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .bb-wrap {
    width: calc(100% - 24px);
  }

  .bb-visual {
    min-height: 400px;
  }

  .bb-main-img-wrap {
    width: 79%;
    height: 315px;
  }

  .bb-year-card {
    right: 91px;
    top: 140px;
    width: 108px;
    height: 76px;
  }

  .bb-small-img-wrap {
    width: 49%;
    height: 160px;
    top: 225px;
  }

  .bb-decor-one {
    top: 326px;
    font-size: 60px;
    line-height: 1;
    letter-spacing: -4px;
    z-index: 6;
  }

  .bb-stats {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .bb-main-img-wrap,
  .bb-main-img,
  .bb-year-card,
  .bb-small-img-wrap,
  .bb-small-img,
  .bb-eyebrow,
  .bb-title-line span,
  .bb-copy,
  .bb-stats,
  .bb-link {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============about end=============== */
/* ===========services================== */
.cc-section {
  background: #060c1a;

  color: #fff;
}

.cc-section * {
  box-sizing: border-box;
}

.cc-wrap {
  width: calc(100% - 40px);
  max-width: 1440px;
  margin: 0 auto;
  padding: 78px 30px 76px;
}

.cc-head {
  display: grid;
  grid-template-columns: 1fr 360px;
  align-items: end;
  gap: 40px;
  margin-bottom: 54px;
}

.cc-eyebrow {
  margin: 0 0 16px;
  color: var(--primary-color);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.cc-title {
  margin: 0;
  max-width: 520px;
  color: #fff;
  font-weight: 700;
  /* line-height: 1.3; */
  /* letter-spacing: 0.9px; */

}

.cc-head-copy {
  margin: 0;
  max-width: 300px;
  justify-self: end;
  color: rgba(218, 226, 236, 0.4);
  line-height: 1.65;
  text-align: right;
}

.cc-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 118px;
  align-items: start;
}

.cc-list {
  width: 100%;
  max-width: 760px;
}

.cc-item {
  width: 100%;
  min-height: 56px;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 18px;
  padding: 0 14px 0 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  background: transparent;
  color: rgba(211, 219, 230, 0.58);
  text-align: left;
  cursor: pointer;
  transition: 0.35s ease;
}

.cc-item-number {
  color: rgba(192, 202, 215, 0.22);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1px;
}

.cc-item-center {
  min-width: 0;
}

.cc-item-title {
  display: block;
  color: inherit;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.cc-item-desc {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  margin-top: 0;
  color: #303a46;
  font-size: 15px;
  line-height: 1.65;
  transition: 0.35s ease;
}

.cc-item-desc>span {
  overflow: hidden;
}

.cc-item-arrow {
  color: rgba(211, 219, 230, 0.22);
  font-size: 18px;
  line-height: 1;
}

.cc-item:hover {
  color: #fff;
}

.cc-item.cc-active {
  min-height: 132px;
  padding: 20px 16px 20px 14px;
  background: #fff;
  color: #111827;
  border-bottom-color: transparent;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.08);
}

.cc-item.cc-active .cc-item-number {
  align-self: start;
  padding-top: 3px;
  color: var(--primary-color);
}

.cc-item.cc-active .cc-item-center {
  align-self: start;
}

.cc-item.cc-active .cc-item-title {
  color: #101722;
  font-weight: 700;
}

.cc-item.cc-active .cc-item-desc {
  grid-template-rows: 1fr;
  opacity: 1;
  margin-top: 8px;
}

.cc-item.cc-active .cc-item-arrow {
  align-self: start;
  padding-top: 1px;
  color: var(--primary-color);
}

.cc-preview {
  position: relative;
  width: 100%;
  min-height: 395px;
  overflow: hidden;
  background: #0b1627;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc-preview-media {
  position: relative;
  width: 100%;
  height: 335px;
  overflow: hidden;
  background: #0a1524;
}

.cc-preview-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  transform: scale(1);
  transition:
    opacity 0.28s ease,
    transform 0.55s ease;
}

.cc-preview.cc-changing .cc-preview-image {
  opacity: 0;
  transform: scale(1.04);
}

.cc-preview-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top,
      rgba(4, 11, 20, 0.92) 0%,
      rgba(4, 11, 20, 0.28) 32%,
      rgba(4, 11, 20, 0) 58%);
}

.cc-preview-number {
  position: absolute;
  left: 18px;
  bottom: 20px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.08);
  font-size: 58px;
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -3px;
}

.cc-preview-footer {
  min-height: 74px;
  display: flex;
  align-items: center;
  padding: 0 28px;
  background: #07111f;
}

.cc-preview-title-wrap {
  position: relative;
  padding-bottom: 12px;
}

.cc-preview-title {
  margin: 0;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.cc-preview-title-wrap:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: var(--primary-color);
}

@media (max-width: 991.98px) {
  .cc-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cc-head-copy {
    justify-self: start;
    max-width: 540px;
    text-align: left;
  }

  .cc-body {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .cc-list {
    max-width: none;
  }

  .cc-preview {
    max-width: 560px;
  }
}

@media (max-width: 767.98px) {
  .cc-wrap {
    width: calc(100% - 32px);
    padding: 54px 0 60px;
  }


  .cc-item {
    grid-template-columns: 44px minmax(0, 1fr) 24px;
    gap: 12px;
  }

  .cc-preview-media {
    height: 300px;
  }
}

/* =========services end============ */

/* =============project section================ */
/* .dd-section {
  width: 100%;
  overflow: hidden;

} */

.dd-section * {
  box-sizing: border-box;
}

.dd-row {
  width: 100%;
  min-height: 405px;
  display: grid;
  grid-template-columns: 46% 54%;
  overflow: hidden;
}

.dd-row:nth-child(even) {
  grid-template-columns: 38% 62%;
}

.dd-media {
  min-height: 405px;
  overflow: hidden;
}

.dd-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.04);
  transition:
    transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 0.5s ease;
}

.dd-row:hover .dd-image {
  transform: scale(1.085);
  filter: saturate(1.05) contrast(1.03);
}

.dd-content {
  min-height: 405px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 58px 42px;
  background: #fff;
}

.dd-row:nth-child(even) .dd-media {
  order: 2;
}

.dd-kicker {
  margin: 0 0 18px;
  color: var(--primary-color);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(16px);
}

.dd-title {
  color: #111827;
  /* font-size: clamp(30px, 3.2vw, 42px); */
  font-weight: 700;
  /* line-height: 1.4; */
  /* letter-spacing: 0.7px; */
  opacity: 0;
  transform: translateY(20px);
}

.dd-copy {
  max-width: 430px;
  margin: 20px 0 0;
  color: #8791a0;
  line-height: 1.75;
  opacity: 0;
  transform: translateY(18px);
}

.dd-link {
  width: max-content;
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  padding-bottom: 6px;
  color: var(--navy-blue);
  ;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-decoration: none;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(14px);
}

.dd-link:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.35s;
}

.dd-link:hover:after {
  width: 100%;
}

.dd-arrow {
  font-size: 18px;
  transition: transform 0.3s;
}

.dd-link:hover .dd-arrow {
  transform: translateX(5px);
}

.dd-row.dd-visible .dd-kicker {
  animation: ddFadeUp 0.65s ease 0.05s forwards;
}

.dd-row.dd-visible .dd-title {
  animation: ddFadeUp 0.75s ease 0.14s forwards;
}

.dd-row.dd-visible .dd-copy {
  animation: ddFadeUp 0.75s ease 0.24s forwards;
}

.dd-row.dd-visible .dd-link {
  animation: ddFadeUp 0.75s ease 0.34s forwards;
}

.dd-row.dd-visible .dd-image {
  animation: ddImageIn 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes ddFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ddImageIn {
  from {
    opacity: 0.2;
    transform: scale(1.12);
    filter: blur(4px);
  }

  to {
    opacity: 1;
    transform: scale(1.04);
    filter: blur(0);
  }
}

@media (max-width: 991.98px) {

  .dd-row,
  .dd-row:nth-child(even) {
    grid-template-columns: 1fr 1fr;
  }

  .dd-content {
    padding: 42px 28px;
  }
}

@media (max-width: 767.98px) {

  .dd-row,
  .dd-row:nth-child(even) {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }

  .dd-row:nth-child(even) .dd-media {
    order: 0;
  }

  .dd-media {
    min-height: 300px;
  }

  .dd-content {
    min-height: auto;
    padding: 38px 22px 42px;
  }

  /* .dd-title {
    font-size: clamp(30px, 8vw, 42px);
  } */
}

/* =========project section end============= */

/* ============footer============ */
.ff-footer {
  /* width: 100%; */
  position: relative;
  overflow: hidden;
  background: #04529D;


  color: #ffffff;
}

.ff-footer * {
  box-sizing: border-box;
}

.ff-container {
  width: calc(100% - 44px);
  margin: 0 auto;
  padding: 38px 34px 0;
}

.ff-main {
  min-height: 250px;
  display: grid;
  grid-template-columns: 34% 17% 1fr;
  gap: 75px;
  padding: 0 0 45px;
}

/* COLUMN 1 */

.ff-about {
  max-width: 330px;
}

.ff-logo-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 25px;
  text-decoration: none;
}

.ff-logo {
  /* width: 65px;
  height: 38px; */
  height: 90px;
  display: block;
  object-fit: contain;
  /* background: #ffffff; */
}

.ff-description {
  margin: 0;
  max-width: 300px;
  color: rgba(255, 255, 255, 0.9);
  /* font-size: 15px; */
  font-weight: 400;
  line-height: 1.75;
}

/* SOCIAL */

.ff-socials {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 17px;
}

.ff-social-link {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #ffffff;
  font-size: 16px;
  text-decoration: none;
  transition:
    transform 0.35s ease,
    color 0.35s ease;
}

.ff-social-link::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transform: scale(0);
  transition: transform 0.35s ease;
}

.ff-social-link i {
  position: relative;
  z-index: 2;
}

.ff-social-link:hover {
  color: var(--primary-color);
  transform: translateY(-4px);
}

.ff-social-link:hover::before {
  transform: scale(1);
}

/* HEADINGS */

.ff-heading {
  margin: 0 0 28px;
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
}

/* LINKS */

.ff-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ff-link {
  width: max-content;
  position: relative;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  text-decoration: none;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.ff-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.ff-link:hover {
  color: var(--primary-color);
  transform: translateX(4px);
}

.ff-link:hover::after {
  width: 100%;
}

.ff-services {
  max-width: 430px;
}

/* DIVIDER */

.ff-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.65);
}

/* BOTTOM */

.ff-bottom {
  /* min-height: 72px; */
  /* align-items: center; */
  text-align: center;
  padding: 15px;
  /* display: flex;
  justify-content: space-between;
  gap: 25px; */
}

.ff-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: 15px;
  line-height: 1.5;
}

.ff-bottom-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.ff-bottom-link {
  color: rgba(255, 255, 255, 0.95);
  font-size: 15px;
  text-decoration: none;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.ff-bottom-link:hover {
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* PREMIUM BACKGROUND LIGHT */

.ff-light {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(75px);
  opacity: 0.13;
  background: var(--primary-color);
}

.ff-light-one {
  top: -130px;
  left: -100px;
}

.ff-light-two {
  right: -100px;
  bottom: -150px;
}

/* REVEAL ANIMATION */

.ff-reveal {
  opacity: 0;
  transform: translateY(55px);
  transition:
    opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.ff-footer.ff-visible .ff-reveal {
  opacity: 1;
  transform: translateY(0);
}

.ff-footer.ff-visible .ff-delay-one {
  transition-delay: 0.1s;
}

.ff-footer.ff-visible .ff-delay-two {
  transition-delay: 0.22s;
}

.ff-footer.ff-visible .ff-delay-three {
  transition-delay: 0.34s;
}

.ff-footer.ff-visible .ff-delay-four {
  transition-delay: 0.46s;
}

/* DIVIDER SHINE */

.ff-divider-wrap {
  position: relative;
  overflow: hidden;
}

.ff-divider-shine {
  position: absolute;
  top: 0;
  left: -20%;
  width: 15%;
  height: 1px;

  background: linear-gradient(90deg,
      transparent,
      #ffffff,
      #37f298,
      #ffffff,
      transparent);

  opacity: 0;
}

.ff-footer.ff-visible .ff-divider-shine {
  animation: ffShine 4.5s linear 1s infinite;
}

@keyframes ffShine {
  0% {
    left: -20%;
    opacity: 0;
  }

  12% {
    opacity: 1;
  }

  88% {
    opacity: 1;
  }

  100% {
    left: 110%;
    opacity: 0;
  }
}

.ff-sirsonite-link {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.ff-sirsonite-link:hover {
  color: var(--primary-color);
}



/* TABLET */

@media (max-width: 991.98px) {
  .ff-container {
    width: calc(100% - 32px);
    padding-left: 20px;
    padding-right: 20px;
  }

  .ff-main {
    grid-template-columns: 1.15fr 0.75fr 1.4fr;
    gap: 40px;
  }
}

/* MOBILE */

@media (max-width: 767.98px) {
  .ff-container {
    width: calc(100% - 28px);
    padding: 40px 10px 0;
  }

  .ff-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px 30px;
    padding-bottom: 40px;
  }

  .ff-about {
    max-width: 100%;
    grid-column: 1 / -1;
  }

  .ff-description {
    max-width: 500px;
  }

  .ff-services {
    max-width: 100%;
  }

  .ff-heading {
    margin-bottom: 22px;
  }

  .ff-bottom {
    padding: 18px 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
}

/* SMALL MOBILE */

@media (max-width: 575.98px) {
  .ff-main {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .ff-about {
    grid-column: auto;
  }

  .ff-bottom-links {
    gap: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ff-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .ff-divider-shine {
    display: none;
  }
}

/* ======footer end=========== */














.why-choose-section {
  position: relative;


  /* background: var(--background-color); */

  color: #fff;

  padding: 50px;

  overflow: hidden;
}



.why-choose-section .container {

  width: 1200px;

  margin: 0 auto;

  padding: 0;
}

.why-choose-heading {

  margin: 0 0 18px 0;

  padding: 0;
}


.why-choose-heading span {

  display: block;

  margin: 0 0 6px 0;

  color: var(--primary-color);

  font-size: 10px;

  font-weight: 700;

  line-height: 1;

  letter-spacing: 1.5px;

  text-transform: uppercase;
}


.why-choose-heading h2 {

  margin: 0;

  color: #fff;

  font-weight: 700;

  /* line-height: 1.3;

  letter-spacing: 0.7px; */
}


.why-choose-grid {


  margin: 0 0 0 72px !important;

  padding: 30px !important;

}



.why-choose-item {

  position: relative;

  height: 150px;


  padding: 30px !important;

  border-right: 1.5px solid #FFFFFF0F;

  border-bottom: 1.5px solid #FFFFFF0F;
  border-top: 1.5px solid #FFFFFF0F;

  display: block;
}



.why-choose-item .item-number {

  display: block;

  margin: 0 0 11px 0;

  color: var(--primary-color);

  font-size: 10px;

  font-weight: 700;

  line-height: 1;

  letter-spacing: 1px;
}


.why-choose-item h3 {

  margin: 0;

  color: #FFFFFFCC;

  font-size: 20px;

  font-weight: 700;

  line-height: 1.5;

  letter-spacing: 0.7px;
}



@media (max-width: 1199.98px) {

  .why-choose-section {
    margin: auto;
  }

  .why-choose-section .container {
    width: 100%;
    max-width: 960px;
    padding: 0;
  }

  .why-choose-grid {
    width: 90%;

  }

  .why-choose-item {
    height: 130px;
    min-height: 130px;
    padding: 25px !important;
  }
}



@media (max-width: 991.98px) {

  .why-choose-section {
    padding: 40px 25px;
  }

  .why-choose-section .container {
    width: 100%;
    max-width: 720px;
    padding: 0;
  }

  .why-choose-grid {
    width: 100%;
    margin-left: 0 !important;
    padding: 0 !important;
  }

  .why-choose-item {
    height: 120px;
    min-height: 120px;
    padding: 25px !important;
  }

  .why-choose-item h3 {
    font-size: 18px;
  }
}



@media (max-width: 767.98px) {

  .why-choose-section {
    min-height: auto;
    padding: 35px 20px;
  }

  .why-choose-section .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .why-choose-heading {
    margin-bottom: 18px;
  }

  .why-choose-heading h2 {
    font-size: 22px;
  }

  .why-choose-grid {
    width: 100%;
    margin-left: 0 !important;
    padding: 0 !important;
  }

  .why-choose-item {
    height: 105px;
    min-height: 105px;
    padding: 25px 15px !important;
  }

  .why-choose-item h3 {
    font-size: 15px;
    line-height: 1.4;
  }

  /* .why-choose-item .item-number {
    font-size: 8px;
    margin-bottom: 9px;
  } */
}

@media (max-width: 575.98px) {

  .why-choose-section {
    padding: 30px 15px;
  }

  .why-choose-section .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .why-choose-heading {
    margin-bottom: 18px;
  }

  /* .why-choose-heading span {
    font-size: 8px;
  } */

  .why-choose-heading h2 {
    font-size: 20px;
    line-height: 1.25;
  }

  .why-choose-grid {
    width: 100%;
    margin-left: 0 !important;
    padding: 0 !important;
  }

  .why-choose-item {
    height: 95px;
    min-height: 95px;
    padding: 22px 14px !important;
  }

  .why-choose-item h3 {
    font-size: 14px;
    line-height: 1.35;
  }

  /* .why-choose-item .item-number {
    font-size: 8px;
    margin-bottom: 8px;
  } */
}



@media (max-width: 400px) {

  .why-choose-section {
    padding: 25px 12px;
  }

  .why-choose-heading h2 {
    font-size: 19px;
  }

  .why-choose-item {
    height: 90px;
    min-height: 90px;
    padding: 20px 12px !important;
  }

  .why-choose-item h3 {
    font-size: 13px;
  }

}












.setbgcolor {
  background: var(--background-color);

  /* background-color: var(--white); */
}

.piller-heading h2 {
  color: var(--background-color) !important;
}


.pillars-grid {



  margin: 0 0 0 72px !important;

  padding: 10px !important;



}




.pillars-grid .pillar-item {
  position: relative;


  padding: 10px 14px 10px !important;
  border-right: 0.8px solid #00000012;
}



.pillars-grid .pillar-item:last-child {
  border-right: none;
}



.pillars-grid .pillar-number {
  display: block;

  margin: 0 0 18px 0;

  color: var(--small-font);

  font-size: 10px;

  font-weight: 600;

  line-height: 1;

  letter-spacing: 1px;
}




.pillars-grid .pillar-item h4 {
  margin: 0;

  color: var(--background-color);



  font-weight: 700;

  line-height: 1.05;

  letter-spacing: 1px;
}

.pillars-grid .pillar-line {
  display: block;

  width: 25px;

  height: 1.5px;

  margin: 13px 0 12px;

  background: var(--blue-line);
}


.pillars-grid .pillar-item p {
  max-width: 145px;

  margin: 0;



  font-weight: 400;

  line-height: 1.6;
}



@media (max-width: 991.98px) {

  .pillars-grid .pillar-item {
    min-height: 200px;

    padding: 28px 22px !important;

    border-bottom: 1px solid rgba(16, 24, 39, 0.07);
  }

  .pillars-grid .pillar-item:nth-child(2n) {
    border-right: none;
  }

  .pillars-grid .pillar-item h3 {
    font-size: 18px;
  }

  .pillars-grid .pillar-item p {
    max-width: 180px;

    /* font-size: 9px; */
  }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767.98px) {

  .pillars-grid .pillar-item {
    min-height: 165px;

    padding: 25px 18px !important;

    border-right: none;

    border-bottom: 1px solid rgba(16, 24, 39, 0.07);
  }

  .pillars-grid .pillar-item:last-child {
    border-bottom: none;
  }

  .pillars-grid .pillar-number {
    margin-bottom: 13px;
  }

  .pillars-grid .pillar-item h3 {
    font-size: 18px;

    line-height: 1.1;
  }

  .pillars-grid .pillar-line {
    margin: 11px 0;
  }

  .pillars-grid .pillar-item p {
    max-width: 240px;

    /* font-size: 9px; */

    line-height: 1.6;
  }

  .pillars-grid .desktop-break {
    display: none;
  }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 575.98px) {

  .pillars-grid .pillar-item {
    min-height: 155px;

    padding: 22px 15px !important;
  }

  .pillars-grid .pillar-item h3 {
    font-size: 17px;
  }

  .pillars-grid .pillar-item p {
    max-width: 260px;

    /* font-size: 9px; */
  }
}


/* =========================================
   EXTRA SMALL
========================================= */

@media (max-width: 400px) {

  .pillars-grid .pillar-item {
    min-height: 150px;

    padding: 20px 13px !important;
  }

  .pillars-grid .pillar-item h3 {
    font-size: 16px;
  }


}














.trusted-heading {
  width: 100%;
  min-height: 130px;

  padding: 30px 20px 25px;

  background: #f3f5f9;

  text-align: center;
}

.trusted-heading span {
  display: block;

  margin-bottom: 10px;

  color: var(--primary-color);

  font-size: 10px;

  font-weight: 700;

  line-height: 1;

  letter-spacing: 2px;

  text-transform: uppercase;
}

.trusted-heading h1 {
  margin: 0;

  color: #101827;


  font-weight: 700;
  /* 
  line-height: 1.1;

  letter-spacing: -0.7px; */
}

.trusted-logo-grid {
  width: 100%;

  margin: 0 !important;

  padding: 30px !important;

  display: flex;

  flex-wrap: wrap;
}

.client-logo {
  flex: 0 0 12.5%;
  max-width: 12.5%;

  height: 82px;

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 7px 3px;

  background: #ffffff;

  /* border-right: 1px solid rgba(16, 24, 39, 0.05);

    border-bottom: 1px solid rgba(16, 24, 39, 0.05); */
}

.client-logo img {
  display: block;

  width: 90%;

  /* max-width: 100%; */

  height: 90%;

  /* height: 100px; */
  object-fit: contain;
}

.client-logo:nth-child(8n) {
  border-right: 0;
}


/* 1200px+ */

@media (min-width: 1200px) {

  .trusted-heading {
    min-height: 130px;

    padding: 31px 20px 25px;
  }

  /* .trusted-heading h1 {
    font-size: 27px;
  } */

  .client-logo {
    height: 82px;

    padding: 7px 10px;
  }

  .client-logo img {
    /* max-width: 115px; */

    /* max-height: 55px; */
  }
}


/* 992px - 1199px */

@media (max-width: 1199.98px) {

  .client-logo {
    height: 100px;
  }

  /* 
  .client-logo img {
    max-width: 105px;

    max-height: 52px;
  } */
}


/* Tablet */

@media (max-width: 991.98px) {

  .trusted-heading {
    min-height: 115px;

    padding: 28px 15px 22px;
  }

  /* .trusted-heading h1 {
    font-size: 24px;
  } */

  .client-logo {
    flex: 0 0 25%;

    max-width: 25%;

    height: 90px;

    /* padding: 10px; */
  }

  .client-logo:nth-child(8n) {
    border-right: 1px solid rgba(16, 24, 39, 0.05);
  }

  .client-logo:nth-child(4n) {
    border-right: 0;
  }

  .client-logo img {
    max-width: 125px;

    max-height: 58px;
  }
}


/* Mobile */

@media (max-width: 767.98px) {

  .trusted-heading {
    min-height: 105px;

    padding: 25px 15px 20px;
  }

  .trusted-heading span {
    font-size: 7px;

    margin-bottom: 8px;
  }

  /* .trusted-heading h1 {
    font-size: 21px;
  } */

  .client-logo {
    flex: 0 0 33.333333%;

    max-width: 33.333333%;

    height: 85px;

    padding: 8px;
  }

  .client-logo:nth-child(4n) {
    border-right: 1px solid rgba(16, 24, 39, 0.05);
  }

  .client-logo:nth-child(3n) {
    border-right: 0;
  }

  .client-logo img {
    max-width: 105px;

    max-height: 52px;
  }
}


/* Small mobile */

@media (max-width: 575.98px) {

  .trusted-heading {
    min-height: 95px;

    padding: 23px 12px 18px;
  }

  .trusted-heading span {
    font-size: 6px;

    letter-spacing: 1.7px;
  }

  /* .trusted-heading h1 {
    font-size: 19px;
  } */

  .client-logo {
    flex: 0 0 50%;

    max-width: 50%;

    height: 82px;

    padding: 8px;
  }

  .client-logo:nth-child(3n) {
    border-right: 1px solid rgba(16, 24, 39, 0.05);
  }

  .client-logo:nth-child(2n) {
    border-right: 0;
  }

  .client-logo img {
    max-width: 105px;

    max-height: 50px;
  }
}


/* Extra small */

@media (max-width: 400px) {

  .trusted-heading {
    min-height: 90px;

    padding: 21px 10px 17px;
  }

  /* .trusted-heading h1 {
    font-size: 18px;
  } */

  .client-logo {
    height: 90px;

    padding: 6px;
  }

  .client-logo img {
    max-width: 90px;

    max-height: 45px;
  }
}



.build-next-section {
  position: relative;

  width: 100%;

  min-height: 500px;

  padding: 90px 0;

  background-color: var(--background-color);

  color: var(--white);

  overflow: hidden;
}



.build-next-section::before {
  content: "";

  position: absolute;

  inset: 0;

  pointer-events: none;

  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px,
      transparent 1px),
    linear-gradient(90deg,
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px);

  background-size: 86px 86px;
}


/* =========================================
   CONTAINER
========================================= */

.build-next-section .container {
  position: relative;

  z-index: 2;

  max-width: 930px;
}


/* =========================================
   LEFT CONTENT
========================================= */

.build-content {
  max-width: 350px;
}


.build-label {
  display: block;

  margin-bottom: 17px;

  color: var(--primary-color);

  font-size: 10px;

  font-weight: 700;

  line-height: 1;

  letter-spacing: 2px;

  text-transform: uppercase;
}


.build-content h1 {
  margin: 0 0 20px;

  color: #ffffff;

  /* font-size: 48px; */

  font-weight: 700;

  /* line-height: 1.25;

  letter-spacing: -1.5px; */
}


.build-content p {
  max-width: 300px;

  margin: 0 0 30px;



  font-weight: 400;

  line-height: 1.7;
}


/* =========================================
   BUTTON
========================================= */

.build-btn {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 15px;

  min-width: 203px;

  /* min-height: 45px; */

  padding: 12px 30px;

  border-radius: 4px;

  background: var(--primary-color);
  color: #060C1A;


  font-size: 12px;

  font-weight: 600;

  line-height: 1;

  letter-spacing: 1px;

  text-decoration: none;

  transition: all 0.3s ease;
}


.build-btn span {
  font-size: 17px;

  line-height: 1;
}


.build-btn:hover {
  background: #ffffff;

  color: #04100a;

  transform: translateY(-2px);
}



.contact-list {
  width: 100%;

  display: flex;

  flex-direction: column;

  gap: 16px;
}


.contact-card {
  position: relative;

  min-height: 65px;

  padding: 14px 17px;

  display: flex;

  align-items: center;

  gap: 15px;
  border: 0.8px solid #FFFFFF12;
  background: #FFFFFF05;


  transition: all 0.3s ease;
}


.contact-card:hover {
  border-color: rgba(20, 212, 99, 0.25);

  background: #14D4631A;

}


.contact-icon {
  width: 40px;

  height: 40px;


  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 3px;

  background: #14D4631A;



  font-size: 15px;
}


.contact-info {
  display: flex;

  flex-direction: column;

  gap: 5px;
}


.contact-info span {
  color: var(--primary-color);

  font-size: 10px;

  font-weight: 700;

  line-height: 1;

  letter-spacing: 1.5px;

  text-transform: uppercase;
}


.contact-info a,
.contact-info p {
  margin: 0;

  color: #ffffff;

  font-size: 14px;

  font-weight: 400;

  line-height: 1.2;

  text-decoration: none;
}


.contact-info a:hover {
  color: var(--build-green);
}



@media (min-width: 1200px) {

  .build-next-section {
    min-height: 500px;

    padding: 90px 0;
  }

  .build-next-section .container {
    max-width: 930px;
  }

  .build-content h2 {
    font-size: 48px;
  }
}


@media (max-width: 1199.98px) {

  .build-next-section {
    padding: 75px 30px;
  }

  .build-next-section .container {
    max-width: 960px;
  }

  .build-content h2 {
    font-size: 44px;
  }

  .contact-card {
    min-height: 63px;
  }
}



@media (max-width: 991.98px) {

  .build-next-section {
    padding: 65px 25px;
  }

  .build-next-section .container {
    max-width: 720px;
  }

  .build-content {
    max-width: 100%;

    margin-bottom: 10px;
  }

  .build-content h2 {
    font-size: 42px;
  }

  .build-content p {
    max-width: 430px;
  }

  .contact-list {
    gap: 14px;
  }
}



@media (max-width: 767.98px) {

  .build-next-section {
    min-height: auto;

    padding: 55px 20px;
  }

  .build-next-section::before {
    background-size: 60px 60px;
  }

  .build-content {
    max-width: 100%;

    margin-bottom: 25px;
  }

  /* .build-label {
    margin-bottom: 14px;

    font-size: 7px;
  } */

  .build-content h2 {
    font-size: 38px;

    line-height: 1.15;

    letter-spacing: -1px;

    margin-bottom: 18px;
  }

  .build-content p {
    max-width: 100%;


    line-height: 1.7;

    margin-bottom: 25px;
  }

  .build-btn {
    min-width: 195px;
    background: var(--primary-color);
    min-height: 44px;

    font-size: 14px;
  }

  .contact-card {
    min-height: 65px;

    padding: 13px 14px;
  }

  .contact-info a {
    font-size: 10px;
  }
}



@media (max-width: 575.98px) {

  .build-next-section {
    padding: 45px 15px;
  }

  .build-content h2 {
    font-size: 34px;
  }


  .contact-list {
    gap: 12px;
  }

  .contact-card {
    min-height: 62px;

    gap: 12px;

    padding: 12px;
  }

  .contact-icon {
    width: 27px;

    height: 27px;

    flex-basis: 27px;
  }

  .contact-info span {
    font-size: 11px;
  }

  .contact-info a,
  .contact-info p {
    font-size: 14px;
    line-height: 1.5;
  }
}



@media (max-width: 400px) {

  .build-next-section {
    padding: 40px 12px;
  }

  .build-content h2 {
    font-size: 30px;
  }

  .build-btn {
    width: 100%;
  }

  .contact-card {
    min-height: 60px;
  }
}



























/* =========================================
   PROJECT ENQUIRY SECTION
========================================= */

.project-enquiry-section {
  /* width: 100%; */
  padding: 50px 20px;
  background: #f5f7fb;
}

/* .project-enquiry-section .container {
  max-width: 976px;
} */


/* =========================================
   LEFT CONTENT
========================================= */

.project-enquiry-content {
  padding-right: 65px;
}

.project-enquiry-label {
  display: block;
  margin-bottom: 14px;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;

  color: var(--primary-color);
  text-transform: uppercase;
}

.project-enquiry-title {
  margin: 0 0 18px;

  /* line-height: 1.04; */
  font-weight: 700;

  color: #172033;
}

.project-enquiry-description {
  max-width: 300px;
  margin: 0 0 39px;

  /* font-size: 11px; */
  line-height: 1.75;

  color: #7b8495;
}


/* =========================================
   CONTACT INFORMATION
========================================= */

.project-enquiry-contact {
  display: flex;
  align-items: flex-start;

  margin-bottom: 24px;
}

.project-enquiry-line {
  width: 2px;
  min-width: 2px;
  height: 32px;

  margin-right: 14px;

  background: var(--navy-blue);
}

.project-enquiry-contact-content {
  display: flex;
  flex-direction: column;
}

.project-enquiry-info-title {
  margin-bottom: 5px;

  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;

  color: var(--navy-blue);
}

.project-enquiry-contact-content a,
.project-enquiry-contact-content strong {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;

  color: #000;
  text-decoration: none;
}

.project-enquiry-contact-content small {
  margin-top: 2px;

  font-size: 14px;

  color: #7b8495;
}


@media (max-width: 768px) {

  .project-enquiry-contact-content a,
  .project-enquiry-contact-content strong {
    font-size: 14px;

  }
}

/* =========================================
   FORM CARD
========================================= */

.project-enquiry-form {
  width: 90%;
  margin: 0 auto;
  padding: 40px 37px 36px;

  background: #ffffff;

  box-shadow: 0 12px 30px rgba(24, 42, 70, 0.07);
}

@media (max-width: 768px) {
  .project-enquiry-form {
    padding: 40px 20px 36px;

    width: 100%;
  }
}

.project-enquiry-form-title {
  margin: 0 0 28px;

  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;

  color: #172033;
}


/* =========================================
   FORM FIELDS
========================================= */

.project-enquiry-field {
  margin-bottom: 14px;
}

.project-enquiry-field label {
  display: block;

  margin-bottom: 9px;

  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 1px;

  color: #596477;
}

.project-enquiry-input {
  display: block;

  width: 100%;

  padding: 11px 12px;
  border: 0.8px solid #0000001F;
  border-radius: 3px;

  background: #F4F6FA;

  font-size: 14px;

  color: #172033;

  box-shadow: none;
  outline: none;

  transition: all 0.3s ease;
}

.project-enquiry-input::placeholder {
  color: #969eac;
}

.project-enquiry-input:focus {
  border-color: var(--navy-blue);

  background: #ffffff;

  box-shadow: none;
  outline: none;
}

.project-enquiry-textarea {
  height: 81px;

  padding-top: 10px;

  resize: none;
}


/* =========================================
   BUTTON
========================================= */

.project-enquiry-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;

  /* width: 138px; */
  /* height: 40px; */

  margin-top: 4px;
  padding: 13px 55px;


  border: 0;
  border-radius: 2px;

  background: var(--navy-blue);

  color: #ffffff;

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;

  cursor: pointer;

  transition: all 0.3s ease;
}

.project-enquiry-button span {
  font-size: 14px;
  line-height: 1;
}

.project-enquiry-button:hover {
  background: #004b88;

  transform: translateY(-1px);
}






.sc-floating-contact {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;

  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sc-floating-btn {
  width: 45px;
  height: 45px;
  border: none;
  outline: none;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
  cursor: pointer;

  font-size: 25px;
  color: #ffffff;

  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.16),
    0 4px 12px rgba(0, 0, 0, 0.08);

  transition: all 0.35s ease;
}

.sc-whatsapp-btn {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.sc-call-btn {
  font-size: 20px;
  background: var(--navy-blue);
}

.sc-top-btn {
  background: var(--primary-color);

}

.sc-floating-btn:hover {
  transform: translateY(-4px) scale(1.06);
  color: #ffffff;
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.2),
    0 6px 18px rgba(0, 0, 0, 0.12);
}

.sc-whatsapp-btn {
  animation: scPulseWhatsApp 2.5s infinite;
}

@keyframes scPulseWhatsApp {
  0% {
    box-shadow:
      0 0 0 0 rgba(37, 211, 102, 0.35),
      0 8px 24px rgba(0, 0, 0, 0.16);
  }

  70% {
    box-shadow:
      0 0 0 18px rgba(37, 211, 102, 0),
      0 8px 24px rgba(0, 0, 0, 0.16);
  }

  100% {
    box-shadow:
      0 0 0 0 rgba(37, 211, 102, 0),
      0 8px 24px rgba(0, 0, 0, 0.16);
  }
}

.sc-top-btn {
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
}

.sc-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 575.98px) {
  .sc-floating-contact {
    right: 16px;
    bottom: 16px;
    gap: 10px;
  }

  .sc-floating-btn {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
}

/*  ================contact========== */

.contact-map-section {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.contact-map {
  width: 100%;
  height: 100%;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;


}




@media (max-width: 991px) {

  .contact-map-section {
    height: 450px;
  }


}



@media (max-width: 767px) {

  .contact-map-section {
    height: 550px;
  }




}


/* Small Mobile */

@media (max-width: 575px) {

  .contact-map-section {
    height: 520px;
  }


}

/* ==================contact end================= */

/* =======================about.php========================== */
/* =========================================
   VISION & MISSION SECTION
========================================= */

.vm-section {

  /* --vm-primary: #14D463; */
  /* --vm-background: #060C1A; */
  /* --vm-white: #ffffff; */
  /* --vm-blue: #1648D8; */


  position: relative;

  width: 100%;

  padding: 110px 20px;

  overflow: hidden;

  background:
    radial-gradient(circle at 10% 40%,
      rgba(22, 72, 216, .12),
      transparent 27%),
    radial-gradient(circle at 90% 70%,
      rgba(20, 212, 99, .08),
      transparent 25%),
    var(--background-color);

}


.vm-section * {
  box-sizing: border-box;
}


/* =========================================
   HEADING
========================================= */

.vm-heading {

  position: relative;
  z-index: 5;

  max-width: 760px;

  margin: 0 auto 65px;

  text-align: center;
}


/* SMALL TOP TEXT */

.vm-eyebrow {

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 15px;

  margin-bottom: 18px;

  color: var(--primary-color);

  font-size: 16px;
  font-weight: 700;

  letter-spacing: 3px;

  text-transform: uppercase;

  opacity: 0;

  transform: translateY(20px);

  animation:
    vmFadeUp .7s ease .1s forwards;
}


/* SIDE LINES */

.vm-eyebrow-line {

  width: 45px;
  height: 1px;

  background:
    linear-gradient(90deg,
      transparent,
      var(--primary-color));
}


.vm-eyebrow-line-right {

  background:
    linear-gradient(90deg,
      var(--primary-color),
      transparent);
}


/* MAIN TITLE */

.vm-title {

  margin: 0;

  color: var(--white);


  font-weight: 800;


  letter-spacing: 3px;

  opacity: 0;

  transform: translateY(30px);

  animation:
    vmFadeUp .85s cubic-bezier(.2, .8, .2, 1) .2s forwards;
}


.vm-blue-text {

  background:
    linear-gradient(135deg,
      #3282ff,
      var(--navy-blue));

  -webkit-background-clip: text;

  background-clip: text;

  -webkit-text-fill-color: transparent;
}


.vm-green-text {

  color: var(--primary-color);
}


.vm-heading-text {

  max-width: 580px;

  margin: 22px auto 0;

  color: var(--build-muted);



  line-height: 1.8;

  opacity: 0;

  transform: translateY(25px);

  animation:
    vmFadeUp .8s ease .35s forwards;
}


/* =========================================
   CARDS GRID
========================================= */

.vm-grid {

  position: relative;
  z-index: 5;

  width: 100%;

  max-width: 1180px;

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 25px;
}


/* =========================================
   CARD
========================================= */

.vm-card {

  position: relative;

  min-height: 480px;

  padding: 38px;

  display: flex;

  flex-direction: column;

  overflow: hidden;

  border:
    1px solid var(--build-border);

  border-radius: 4px;

  background:
    linear-gradient(145deg,
      rgba(255, 255, 255, .055),
      rgba(255, 255, 255, .015));

  box-shadow:
    0 25px 70px rgba(0, 0, 0, .20);

  transition:
    transform .45s cubic-bezier(.2, .8, .2, 1),
    border-color .45s ease,
    box-shadow .45s ease;

  opacity: 0;

  transform: translateY(50px);
}


.vm-vision {

  animation:
    vmCardUp .9s ease .45s forwards;
}


.vm-mission {

  animation:
    vmCardUp .9s ease .58s forwards;
}


/* TOP COLOR LINE */

.vm-card::before {

  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;

  height: 2px;
}


.vm-vision::before {

  background:
    linear-gradient(90deg,
      transparent,
      var(--navy-blue),
      #4c8cff,
      transparent);
}


.vm-mission::before {

  background:
    linear-gradient(90deg,
      transparent,
      var(--primary-color),
      #7af2a8,
      transparent);
}


/* HOVER GLOW */

.vm-card::after {

  content: "";

  position: absolute;

  width: 280px;
  height: 280px;

  right: -160px;
  top: -160px;

  border-radius: 50%;

  opacity: .45;

  transition:
    transform .6s ease,
    opacity .6s ease;

  pointer-events: none;
}


.vm-vision::after {

  background:
    radial-gradient(circle,
      rgba(22, 72, 216, .22),
      transparent 70%);
}


.vm-mission::after {

  background:
    radial-gradient(circle,
      rgba(20, 212, 99, .16),
      transparent 70%);
}


.vm-card:hover {

  transform: translateY(-10px);

  box-shadow:
    0 35px 80px rgba(0, 0, 0, .30);
}


.vm-vision:hover {

  border-color:
    rgba(22, 72, 216, .35);
}


.vm-mission:hover {

  border-color:
    rgba(20, 212, 99, .30);
}


.vm-card:hover::after {

  transform: scale(1.5);

  opacity: .8;
}


/* =========================================
   CARD TOP
========================================= */

.vm-card-top {

  position: relative;
  z-index: 2;

  display: flex;

  align-items: center;
  justify-content: space-between;
}


.vm-number {

  color: rgba(255, 255, 255, .10);

  font-size: 55px;

  font-weight: 800;

  line-height: 1;
}


.vm-card-tag {

  padding: 8px 14px;

  border:
    1px solid rgba(255, 255, 255, .08);

  color: rgba(255, 255, 255, .75);

  font-size: 14px;

  font-weight: 600;

  letter-spacing: 1px;

  text-transform: uppercase;
}


.vm-vision .vm-card-tag {

  border-color:
    rgba(22, 72, 216, .30);

  color: #75a5ff;
}


.vm-mission .vm-card-tag {

  border-color:
    rgba(20, 212, 99, .25);

  color: var(--primary-color);
}


/* =========================================
   CARD CONTENT
========================================= */

.vm-card-content {

  position: relative;

  z-index: 2;

  flex: 1;

  padding-top: 48px;
}


.vm-small-title {

  margin-bottom: 14px;

  font-size: 15px;

  font-weight: 700;

  letter-spacing: 3px;

  text-transform: uppercase;
}


.vm-vision .vm-small-title {

  color: #4d86ff;
}


.vm-mission .vm-small-title {

  color: var(--primary-color);
}


.vm-card-title {

  max-width: 450px;

  margin: 0 0 25px;

  color: var(--white);



  font-weight: 700;

  line-height: 1.1;

  letter-spacing: 2px;
}


.vm-card-title span {

  display: block;
}


.vm-vision .vm-card-title span {

  color: #4d86ff;
}


.vm-mission .vm-card-title span {

  color: var(--primary-color);
}


.vm-card-text {

  max-width: 470px;

  margin: 0;

  color: var(--build-muted);



  line-height: 1.8;
}


.vm-second-text {

  margin-top: 16px;
}



/* =========================================
   BACKGROUND GLOWS
========================================= */

.vm-glow {

  position: absolute;

  border-radius: 50%;

  pointer-events: none;

  filter: blur(5px);
}


.vm-glow-blue {

  width: 430px;

  height: 430px;

  left: -300px;

  top: 150px;

  background:
    radial-gradient(circle,
      rgba(22, 72, 216, .17),
      transparent 70%);
}


.vm-glow-green {

  width: 400px;

  height: 400px;

  right: -280px;

  bottom: 50px;

  background:
    radial-gradient(circle,
      rgba(20, 212, 99, .13),
      transparent 70%);
}


/* =========================================
   ANIMATION
========================================= */

@keyframes vmFadeUp {

  to {

    opacity: 1;

    transform:
      translateY(0);

  }

}


@keyframes vmCardUp {

  to {

    opacity: 1;

    transform:
      translateY(0);

  }

}


/* =========================================
   TABLET
========================================= */

@media(max-width:991.98px) {

  .vm-section {

    padding:
      85px 20px;

  }


  .vm-grid {

    gap: 20px;

  }


  .vm-card {

    padding: 30px;

  }

}


/* =========================================
   MOBILE
========================================= */

@media(max-width:767.98px) {

  .vm-section {

    padding:
      70px 15px;

  }


  .vm-heading {

    margin-bottom:
      45px;

  }


  .vm-grid {

    grid-template-columns:
      1fr;

  }


  .vm-card {

    min-height: auto;

    padding:
      28px 22px;

  }


  .vm-card-content {

    padding-top:
      35px;

  }


  .vm-eyebrow-line {

    width: 30px;

  }

}
















/* =========================================
   MATHURA ENTERPRISES
   WHY CHOOSE US
========================================= */

.me-why-section {
  position: relative;
  padding: 75px 0 80px;
  overflow: hidden;
  background: #f3f5f9;
}

.me-why-heading {
  margin-bottom: 55px;
  position: relative;
  z-index: 2;
}

.me-why-heading h1 {
  margin: 0;
  line-height: 1.2;
  font-weight: 700;
  color: var(--navy-blue);
}

.me-why-heading h1 span {
  color: var(--primary-color);
}

.me-why-features {
  position: relative;
  z-index: 2;
}

.me-why-card {
  position: relative;

  /* height: 100%;
  min-height: 335px; */

  padding: 30px 18px 28px;

  background: #ffffff;

  border: 1px solid #e8edf3;
  border-radius: 10px;

  box-shadow:
    0 4px 12px rgba(20, 45, 80, 0.04),
    0 10px 25px rgba(20, 45, 80, 0.06);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;

  overflow: hidden;
}


/* .me-why-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 50%;

  width: 0;
  height: 3px;

  transform: translateX(-50%);

  background: var(--primary-color);

  transition: width 0.35s ease;
} */

/* 
.me-why-card::after {
  content: "";

  position: absolute;

  right: -20px;
  bottom: -20px;

  width: 55px;
  height: 55px;

  border-radius: 50%;

  background: var(--primary-color);

  opacity: 0.06;

  transition:
    transform 0.4s ease,
    opacity 0.4s ease; 
}

*/
/* ====================================*/
.me-why-card:hover {
  transform: translateY(-6px);

  border-color: #dce4ed;

  box-shadow:
    0 8px 18px rgba(20, 45, 80, 0.06),
    0 18px 38px rgba(20, 45, 80, 0.10);
}


.me-why-card:hover::before {
  width: 55px;
}


.me-why-card:hover::after {
  transform: scale(2);
  opacity: 0.10;
}


.me-why-icon {
  height: 100px;

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;

  color: var(--navy-blue);
}


.me-why-icon>i {
  font-size: 70px;

  line-height: 1;

  transition:
    color 0.35s ease,
    transform 0.35s ease;
}


.me-why-card:hover .me-why-icon>i {
  color: var(--primary-color);

  transform: scale(1.04);
}


.me-why-speedometer {
  position: absolute;

  bottom: 15px;
  left: 50%;

  transform: translateX(-50%);
}


.me-why-speedometer i {
  font-size: 70px;

  color: var(--navy-blue);

  transition:
    color 0.35s ease,
    transform 0.35s ease;
}


.me-why-card:hover .me-why-speedometer i {
  color: var(--primary-color);

  transform: scale(1.03);
}



.me-why-icon .fa-face-smile {
  position: absolute;

  top: 20px;
  right: 22px;

  font-size: 32px;

  color: var(--primary-color);

  transition:
    transform 0.35s ease;
}


.me-why-card:hover .fa-face-smile {
  transform: rotate(-5deg) scale(1.08);
}



.me-why-line {
  position: relative;

  width: 78%;
  height: 6px;

  margin: 8px auto 24px;

  background: #e9edf2;

  border-radius: 20px;

  overflow: hidden;
}



.me-why-line::before {
  content: "";

  position: absolute;

  left: 0;
  top: 0;

  width: 77%;
  height: 100%;

  background: var(--navy-blue);

  border-radius: 20px;
}



.me-why-line span {
  position: absolute;

  right: 0;
  top: 0;

  width: 23%;
  height: 100%;

  background: var(--primary-color);

  border-radius: 0 20px 20px 0;

  transition: width 0.35s ease;
}


.me-why-card:hover .me-why-line span {
  width: 27%;
}



.me-why-card h4 {
  position: relative;
  z-index: 2;
  text-align: center;

  margin: 0;

  color: var(--navy-blue);

  font-size: 20px;

  line-height: 1.4;

  font-weight: 600;

  transition: color 0.3s ease;
}



.me-why-card:hover h4 {
  color: var(--navy-blue);
}


@media (max-width: 991px) {

  .me-why-section {
    padding: 60px 0;
  }

  .me-why-heading {
    margin-bottom: 45px;
  }

  .me-why-card {
    min-height: 310px;

    padding: 25px 15px;
  }

  .me-why-icon {
    height: 160px;
  }

  .me-why-icon>i {
    font-size: 85px;
  }

  .me-why-speedometer i {
    font-size: 72px;
  }

  .me-why-line {
    width: 75%;
  }

  .me-why-card h4 {
    font-size: 18px;
  }
}

@media (max-width: 575px) {

  .me-why-section {
    padding: 50px 0 55px;
  }

  .me-why-heading {
    margin-bottom: 35px;
  }

  .me-why-features {
    row-gap: 25px !important;
  }

  .me-why-card {
    min-height: 275px;

    padding: 20px 10px;

    border-radius: 8px;

    box-shadow:
      0 4px 12px rgba(20, 45, 80, 0.06),
      0 8px 18px rgba(20, 45, 80, 0.04);
  }

  .me-why-card:hover {
    transform: translateY(-3px);

    box-shadow:
      0 7px 16px rgba(20, 45, 80, 0.08),
      0 12px 25px rgba(20, 45, 80, 0.07);
  }

  .me-why-icon {
    height: 125px;
  }

  .me-why-icon>i {
    font-size: 65px;
  }

  .me-why-speedometer i {
    font-size: 58px;
  }

  .me-why-icon .fa-face-smile {
    top: 10px;
    right: 12px;

    font-size: 24px;
  }

  .me-why-line {
    width: 82%;

    height: 5px;

    margin: 5px auto 18px;
  }

  .me-why-card h4 {
    font-size: 16px;

    line-height: 1.35;
  }
}

/* =======================about-end============================ */







/* ==================banner===================== */

.mxhero {
  position: relative;
  /* width: 100%;
  min-height: 520px; */
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 48% 115%, rgba(3, 82, 157, .42), transparent 34%),
    linear-gradient(112deg, #030713 0%, var(--background-color) 52%, #07182d 100%);
}

.mxhero * {
  box-sizing: border-box
}

/* Unique architectural perspective floor */
.mxhero-floor {
  position: absolute;
  left: 50%;
  bottom: -235px;
  width: 1100px;
  height: 500px;
  z-index: -4;
  transform: translateX(-50%) perspective(600px) rotateX(66deg);
  transform-origin: center bottom;
  background-image:
    linear-gradient(rgba(20, 212, 99, .13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 72, 216, .17) 1px, transparent 1px);
  background-size: 55px 55px;
  -webkit-mask-image: linear-gradient(to top, #000 0%, rgba(0, 0, 0, .72) 40%, transparent 88%);
  mask-image: linear-gradient(to top, #000 0%, rgba(0, 0, 0, .72) 40%, transparent 88%);
  animation: mxfloor 8s linear infinite;
}

/* Giant technical number in background */
.mxhero-watermark {
  position: absolute;
  left: 50%;
  top: 49%;
  z-index: -5;
  transform: translate(-50%, -50%);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .035);
  font-size: clamp(210px, 28vw, 430px);
  line-height: .7;
  font-weight: 900;
  letter-spacing: -25px;
  user-select: none;
  pointer-events: none;
  animation: mxwater 8s ease-in-out infinite alternate;
}

/* Left / right luminous rails */
.mxhero-rail {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  z-index: -2;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, .10), transparent);
}

.mxhero-rail-left {
  left: 9%
}

.mxhero-rail-right {
  right: 9%
}

.mxhero-rail::before {
  content: "";
  position: absolute;
  left: -2px;
  width: 5px;
  height: 46px;
  border-radius: 10px;
  background: linear-gradient(to bottom, transparent, var(--primary-color), transparent);
  box-shadow: 0 0 16px rgba(20, 212, 99, .65);
  animation: mxrail 5.5s ease-in-out infinite;
}

.mxhero-rail-right::before {
  animation-delay: 1.7s;
  background: linear-gradient(to bottom, transparent, #70a4ff, transparent);
  box-shadow: 0 0 16px rgba(22, 72, 216, .75);
}

/* Angular premium shards */
.mxhero-shard {
  position: absolute;
  z-index: -3;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, .055);
  background: linear-gradient(145deg, rgba(255, 255, 255, .025), transparent);
  backdrop-filter: blur(2px);
}

.mxhero-shard-a {
  width: 260px;
  height: 390px;
  left: -120px;
  top: 50px;
  transform: rotate(22deg) skewY(-8deg);
  animation: mxshardA 9s ease-in-out infinite alternate;
}

.mxhero-shard-b {
  width: 220px;
  height: 340px;
  right: -90px;
  bottom: -30px;
  transform: rotate(-18deg) skewY(8deg);
  animation: mxshardB 10s ease-in-out infinite alternate;
}

/* central premium content */
.mxhero-content {
  position: relative;
  z-index: 5;
  width: min(900px, calc(100% - 40px));
  margin: auto;
  padding: 90px 20px;
  text-align: center;
}

.mxhero-tag {
  width: max-content;
  margin: 0 auto 23px;
  padding: 9px 16px;
  position: relative;
  color: var(--primary-color);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(15px);
  animation: mxenter .7s ease .05s forwards;
}

.mxhero-tag::before,
.mxhero-tag::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-color));
}

.mxhero-tag::before {
  right: 100%;
}

.mxhero-tag::after {
  left: 100%;
  transform: scaleX(-1);
}

.mxhero-title {
  margin: 0;
  color: var(--white);
  font-size: clamp(58px, 7.2vw, 40px);
  line-height: .9;
  font-weight: 800;
  letter-spacing: 2px;
  opacity: 0;
  transform: translateY(32px);
  animation: mxenter .95s cubic-bezier(.2, .8, .2, 1) .16s forwards;
}

.mxhero-title strong {
  position: relative;
  display: inline-block;
  font-weight: 800;
  background: linear-gradient(100deg, #fff 5%, #a6c7ff 46%, var(--primary-color) 92%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 
.mxhero-title strong::after {
  content: "";
  position: absolute;
  left: 6%;
  right: 3%;
  bottom: -13px;
  height: 3px;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--blue-line), var(--primary-color), transparent);
  box-shadow: 0 0 14px rgba(20, 212, 99, .28);
  animation: mxunderline .9s cubic-bezier(.2, .8, .2, 1) .95s forwards;
} */

.mxhero-desc {
  max-width: 650px;
  margin: 35px auto 0;
  color: rgba(255, 255, 255, .66);
  font-size: 16px;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(20px);
  animation: mxenter .8s ease .38s forwards;
}

.mxhero-btn {
  position: relative;
  min-width: 190px;
  min-height: 54px;
  margin-top: 30px;
  padding: 0 19px 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  overflow: hidden;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .055);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .07),
    0 18px 45px rgba(0, 0, 0, .18);
  backdrop-filter: blur(12px);
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  opacity: 0;
  transform: translateY(18px);
  animation: mxenter .8s ease .55s forwards;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
  letter-spacing: 1px;
}

.mxhero-btn::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(.28);
  transform-origin: left;
  background: linear-gradient(90deg, var(--blue-line), var(--primary-color));
  transition: transform .4s ease;
}

.mxhero-btn:hover {
  color: #fff;
  transform: translateY(-4px);
  background: rgba(255, 255, 255, .08);
  border-color: rgba(20, 212, 99, .24);
}

.mxhero-btn:hover::before {
  transform: scaleX(1)
}

.mxhero-arrow {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: #071426;
  background: var(--primary-color);
  box-shadow: 0 0 18px rgba(20, 212, 99, .18);
  transition: transform .3s ease;
}

.mxhero-btn:hover .mxhero-arrow {
  transform: translateX(4px)
}

/* travelling energy path */
.mxhero-path {
  position: absolute;
  left: 0;
  right: 0;
  top: 90%;
  z-index: -1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(22, 72, 216, .14), rgba(20, 212, 99, .13), transparent);
}

.mxhero-path::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -8%;
  width: 90px;
  height: 3px;
  border-radius: 20px;
  background: linear-gradient(90deg, transparent, #fff, var(--primary-color), transparent);
  box-shadow: 0 0 16px rgba(20, 212, 99, .5);
  animation: mxpath 6s cubic-bezier(.4, 0, .2, 1) infinite;
}

@keyframes mxenter {
  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes mxunderline {
  to {
    transform: scaleX(1)
  }
}

@keyframes mxrail {
  0% {
    top: -15%;
    opacity: 0
  }

  18% {
    opacity: 1
  }

  75% {
    opacity: .8
  }

  100% {
    top: 108%;
    opacity: 0
  }
}

@keyframes mxpath {
  0% {
    left: -8%;
    opacity: 0
  }

  15% {
    opacity: 1
  }

  82% {
    opacity: 1
  }

  100% {
    left: 103%;
    opacity: 0
  }
}

@keyframes mxfloor {
  from {
    background-position: 0 0
  }

  to {
    background-position: 0 55px
  }
}

@keyframes mxwater {
  from {
    transform: translate(-50%, -50%) scale(.96);
    opacity: .6
  }

  to {
    transform: translate(-50%, -52%) scale(1.03);
    opacity: 1
  }
}

@keyframes mxshardA {
  from {
    transform: translateY(-12px) rotate(22deg) skewY(-8deg)
  }

  to {
    transform: translateY(22px) rotate(17deg) skewY(-5deg)
  }
}

@keyframes mxshardB {
  from {
    transform: translateY(18px) rotate(-18deg) skewY(8deg)
  }

  to {
    transform: translateY(-18px) rotate(-14deg) skewY(5deg)
  }
}

@media(max-width:767.98px) {
  .mxhero {
    min-height: 470px;
  }

  .mxhero-content {
    width: 100%;
    padding: 72px 18px;
  }

  .mxhero-title {
    font-size: clamp(30px, 15vw, 28px);
    letter-spacing: 3px;
  }

  .mxhero-desc {
    font-size: 15px;
    line-height: 1.72;
  }

  .mxhero-rail-left {
    left: 16px
  }

  .mxhero-rail-right {
    right: 16px
  }

  .mxhero-shard {
    opacity: .45;
  }

  .mxhero-floor {
    width: 760px;
  }
}

@media(prefers-reduced-motion:reduce) {

  .mxhero-tag,
  .mxhero-title,
  .mxhero-desc,
  .mxhero-btn {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  .mxhero-floor,
  .mxhero-watermark,
  .mxhero-rail::before,
  .mxhero-shard,
  .mxhero-path::after,
  .mxhero-title strong::after {
    animation: none !important;
  }
}

/* ===================banner-end=================== */

/* ========================services.php======================== */
.splx-section {
  --splx-green: #14D463;
  --splx-dark: #060C1A;
  --splx-blue: #1648D8;
  --splx-navy: #03529D;
  --splx-white: #ffffff;
  --splx-soft: #F4F6FA;
  --splx-muted: #7d8490;

  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  overflow-x: clip;
  padding: 90px 20px 110px;
  background:
    radial-gradient(circle at 8% 12%, rgba(22, 72, 216, .085), transparent 22%),
    radial-gradient(circle at 92% 86%, rgba(20, 212, 99, .085), transparent 20%),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 48%, #f6f9fc 100%);
}

.splx-section * {
  box-sizing: border-box;
}

.splx-wrap {
  width: 100%;
  min-width: 0;
  max-width: 1320px;
  margin: 0 auto;
}

.splx-head {
  max-width: 820px;
  margin: 0 auto 64px;
  text-align: center;
}

.splx-kicker {
  width: max-content;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--splx-green);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.splx-kicker::before,
.splx-kicker::after {
  content: "";
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--splx-green));
}

.splx-kicker::after {
  background: linear-gradient(90deg, var(--splx-green), transparent);
}

.splx-head-title {
  margin: 0;
  color: var(--splx-dark);

  font-weight: 800;

}

.splx-head-title span {
  background: linear-gradient(90deg, var(--splx-navy), var(--splx-blue), var(--splx-green));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.splx-head-text {
  max-width: 650px;
  margin: 18px auto 0;
  color: var(--splx-muted);
  font-size: 16px;
  line-height: 1.8;
}

/* service row */
.splx-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 64px;
  min-height: 500px;
  margin-bottom: 34px;
  padding: 34px;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(247, 250, 255, .88));
  border: 1px solid rgba(6, 12, 26, .055);
  box-shadow:
    0 28px 75px rgba(6, 12, 26, .075),
    inset 0 1px 0 rgba(255, 255, 255, .96);
  overflow: hidden;
  transition: transform .45s cubic-bezier(.2, .8, .2, 1), box-shadow .45s ease, border-color .45s ease;
}

.splx-row:hover {
  transform: translateY(-8px);
  border-color: rgba(3, 82, 157, .10);
  box-shadow:
    0 34px 90px rgba(6, 12, 26, .10),
    inset 0 1px 0 rgba(255, 255, 255, .98);
}

.splx-row:nth-child(even) .splx-media {
  order: 2;
}

.splx-row:nth-child(even) .splx-content {
  order: 1;
}

.splx-row::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .55;
  background:
    radial-gradient(circle at 10% 10%, rgba(22, 72, 216, .07), transparent 28%),
    radial-gradient(circle at 90% 90%, rgba(20, 212, 99, .065), transparent 28%);
}

.splx-row::after {
  content: "";
  position: absolute;
  top: -45%;
  left: -24%;
  width: 12%;
  height: 190%;
  z-index: 1;
  transform: rotate(18deg);
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .92), transparent);
  opacity: 0;
}

.splx-row:hover::after {
  animation: splxRowShine 1.1s ease;
}

/* media */
.splx-media {
  position: relative;
  /* min-height: 410px; */
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, .78);
  box-shadow:
    0 28px 65px rgba(6, 12, 26, .14),
    0 0 0 1px rgba(3, 82, 157, .035);
  opacity: 0;
  transform: translateX(-60px) scale(.98);
  transition:
    opacity .9s cubic-bezier(.2, .8, .2, 1),
    transform .9s cubic-bezier(.2, .8, .2, 1);
}

.splx-row:nth-child(even) .splx-media {
  transform: translateX(60px) scale(.98);
}

.splx-row.splx-visible .splx-media {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.splx-media::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 18px;
  pointer-events: none;
}

.splx-img {
  width: 100%;
  height: 100%;
  /* min-height: 410px; */
  display: block;
  /* object-fit: cover; */
  transform: scale(1.06);
  transition: transform 1.1s cubic-bezier(.2, .8, .2, 1);
  will-change: transform;
}

.splx-row:hover .splx-img {
  transform: scale(1.11);
}

.splx-img-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(6, 12, 26, .38), transparent 45%),
    linear-gradient(120deg, rgba(3, 82, 157, .12), transparent 48%);
  pointer-events: none;
}

.splx-number {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 3;
  min-width: 58px;
  height: 42px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, rgba(6, 12, 26, .72), rgba(3, 82, 157, .60));
  border: 1px solid rgba(255, 255, 255, .20);
  box-shadow: 0 12px 28px rgba(6, 12, 26, .18);
  backdrop-filter: blur(10px);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1px;
}

.splx-accent {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 3;
  width: 140px;
  height: 3px;
  border-radius: 20px;
  background: linear-gradient(90deg, var(--splx-blue), var(--splx-green));
  box-shadow: 0 0 14px rgba(20, 212, 99, .28);
}

/* content */
.splx-content {
  position: relative;
  z-index: 2;
  padding: 22px 16px;
  opacity: 0;
  transform: translateY(42px);
  transition:
    opacity .85s ease .12s,
    transform .85s cubic-bezier(.2, .8, .2, 1) .12s;
}

.splx-row.splx-visible .splx-content {
  opacity: 1;
  transform: translateY(0);
}

.splx-mini {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--splx-green);
  background: rgba(20, 212, 99, .055);
  border: 1px solid rgba(20, 212, 99, .11);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.splx-mini::before {
  content: "";
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--splx-blue), var(--splx-green));
}

.splx-title {
  max-width: 540px;
  margin: 0;
  color: var(--splx-dark);

  font-weight: 700;

}

.splx-title span {
  background: linear-gradient(90deg, var(--splx-navy), var(--splx-blue), var(--splx-green));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.splx-desc {
  max-width: 570px;
  margin: 20px 0 0;
  color: var(--splx-muted);

  line-height: 1.8;
}

/* removed points as requested */

.splx-link {
  /* width: max-content;
  min-height: 46px; */
  margin-top: 28px;
  padding: 5px 15px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 999px;
  color: var(--splx-navy);
  border: 1px solid rgba(3, 82, 157, .10);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: .4px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.splx-link::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .65);
}

.splx-link:hover {
  transform: translateY(-3px);
  border-color: rgba(20, 212, 99, .22);
  box-shadow: 0 16px 32px rgba(6, 12, 26, .08);
}

.splx-arrow {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--splx-navy), var(--splx-green));
  transition: transform .3s ease;
}

.splx-link:hover .splx-arrow {
  transform: translateX(5px) rotate(-8deg);
}

@keyframes splxRowShine {
  0% {
    left: -24%;
    opacity: 0
  }

  24% {
    opacity: .7
  }

  100% {
    left: 118%;
    opacity: 0
  }
}

@media(max-width:1050px) {
  .splx-row {
    gap: 34px;
    padding: 24px;
  }

  /* .splx-title {
    font-size: 32px;
  } */
}

@media(max-width:850px) {
  .splx-row {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 26px;
  }

  .splx-row:nth-child(even) .splx-media,
  .splx-row:nth-child(even) .splx-content {
    order: initial;
  }

  /* 
  .splx-media,
  .splx-row:nth-child(even) .splx-media {
    min-height: 340px;
    transform: translateY(40px) scale(.98);
  } */

  .splx-img {
    min-height: 340px;
  }

  .splx-content {
    padding: 10px 4px 20px;
  }
}

@media(max-width:600px) {
  .splx-section {
    padding: 65px 14px 80px;
  }

  .splx-head {
    margin-bottom: 40px;
  }

  .splx-head-title {
    font-size: 36px;
  }

  .splx-row {
    padding: 16px;
    border-radius: 20px;
    margin-bottom: 20px;
  }

  .splx-media {
    min-height: 270px;
    border-radius: 16px;
  }

  .splx-img {
    min-height: 270px;
  }

  /* .splx-title {
    font-size: 28px;
  } */

  .splx-desc {
    font-size: 15px;
  }
}

/* =====================servicess-end================= */