.heroSection {
  padding: 100px 24px;
}

.highlightBox {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  margin-bottom: 1.3rem;

  background: #f8fafc;
  border: 1px solid rgba(34, 197, 94, 0.15);
  border-radius: 999px;

  transition: all 0.3s ease;
}

.highlightBox:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.highlightBox span:last-child {
  font-size: 12px;
  font-weight: 500;
  color: #45556c;
}

.circleDot {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
}

.circleDot::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(34, 197, 94, 0.45);
  animation: pulseDot 2s ease-out infinite;
}

@keyframes pulseDot {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  70% {
    transform: scale(3);
    opacity: 0;
  }

  100% {
    transform: scale(3);
    opacity: 0;
  }
}
.heroSection h1 {
  font-size: 4.5rem;
  color: #0f172b;
  font-weight: 700;
}

.dsgTxt {
  color: #45556c;
  font-size: 30px;
  font-weight: 500;
}

.introPara {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #314158;
  margin-bottom: 1.7rem;
}

.heroSecCtaBox {
  justify-content: center;
  margin-top: 14px;
}

.ctaBox a {
  width: 100%;
  text-decoration: none;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #e5e5e5;
  gap: 10px;
  font-size: 14px;
  border: 1px solid #dbd6d6;
  padding: 8px 0px;
  border-radius: 5px;
  transition: all 0.2s ease-in-out;
}

.ctaBox .msgBtn {
  background: #171717;
  color: #ffffff;
}

.ctaBox .msgBtn:hover {
  background: #171717e6;
}

.ctaBox .resumeDonwloadBtn:hover {
  background: #f5f5f5;
}

.statsCounterSection {
  margin-bottom: 60px;
}

.stasBox {
  text-align: center;
}

.stasBox span {
  font-size: 2.25rem;
  font-weight: 900;
  color: #0f172b;
}

.stasBox p {
  font-size: 1rem;
  font-weight: 500;
  color: #45556c;
}

.servicesSection {
  margin-bottom: 80px;
}

.servicesSection .div-12 {
  margin-bottom: 22px;
}

.servicesSection .card {
  padding: 24px;
  transition: all 0.3s ease-in-out;
  border-color: #e2e8f0;
  border-radius: 14px;
  box-shadow:
    rgba(0, 0, 0, 0.1) 0px 0px 5px 0px,
    rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
}

.servicesSection .card:hover {
  transform: translateY(-3px);
  box-shadow: rgba(0, 0, 0, 0.45) 0px 14px 20px -13px;
}

.cardHeaderBox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.svgBox {
  display: inline-block;
  padding: 8px 10px;
  border-radius: 8px;
  background: #f1f5f9;
}

.svgBox svg {
  color: #45556c;
  transition: all 0.3s ease-in-out;
}

.servicesSection .card:hover .svgBox svg {
  height: 32px;
  width: 32px;
}

.servicesSection .card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #0f172b;
  margin-bottom: 0;
}

.servicesSection .card p {
  font-size: 14px;
  color: #45556c;
}

.projectSection {
  padding-bottom: 40px;
}

.projectSection .row {
  margin-bottom: 45px;
}

.projectSection h2,
.connectionSection h2 {
  font-size: 3rem;
  color: #0f172b;
  font-weight: 700;
  margin-bottom: 12px;
  text-align: center;
}

.projectSection .card {
  border-color: #e2e8f0;
  border-radius: 14px;
  box-shadow:
    rgba(0, 0, 0, 0.1) 0px 0px 5px 0px,
    rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
  padding-bottom: 30px;
  transition: all 0.3s ease;
}

.projectTxt {
  font-size: 1.25rem;
  color: #45556c;
  text-align: center;
  margin-bottom: 60px;
}

.projectImgBox {
  overflow: hidden;
  text-align: center;
  height: 293px;
  position: relative;
}

.projectImgBox img {
  width: 70%;
  transition: all 0.2s ease;
}

.projectTit {
  font-size: 1.25rem;
  font-weight: 600;
}

.projectDesc {
  font-size: 1rem;
  color: #737373;
}

.techStackBox {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 1rem;
}

.techStackBox span,
.proTxt {
  font-size: 0.75rem;
  color: #0a0a0a;
  font-weight: 500;
  border: 1px solid #e5e5e5;
  padding: 1px 10px;
  border-radius: 5px;
}

.proTxt {
  background: #e8e8ea;
  position: absolute;
  right: 14px;
  top: 20px;
}

.projectBtnBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.projectBtnBox a {
  width: 100%;
  text-decoration: none;
  color: black;
  border: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-weight: 500;
  font-size: 14px;
  padding: 7px 0;
  border-radius: 10px;
  transition: all 0.2s ease-in-out;
}

.projectBtnBox a svg {
  height: 16px;
  width: 16px;
}

.projectBtnBox a:last-child {
  background: #171717;
  color: #ffffff;
}

.projectBtnBox a:first-child:hover {
  background: #f5f5f5;
}

.projectBtnBox a:last-child:hover {
  background: #171717e6;
}

.projectSection .card:hover {
  transform: translateY(-3px);
  box-shadow: rgba(0, 0, 0, 0.45) 0px 14px 20px -13px;
}

.projectSection .card:hover .projectImgBox img {
  transform: scale(1.02);
}

.allProBtn {
  text-decoration: none;
  color: #171717;
  font-size: 18px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border: 1px solid #d0caca;
  border-radius: 10px;
  gap: 12px;
  transition: all 0.2s ease-in-out;
}

.allProBtn:hover {
  background: #f5f5f5;
}

.allProBtn svg {
  height: 16px;
  width: 16px;
}

.connectionSection {
  padding: 80px 0;
}

.contactBox {
  background: #0f172b;
  padding: 60px 50px;
  color: white;
  border-radius: 14px;
}

.contactBox h3 {
  font-size: 30px;
  font-weight: 700;
  color: #fffffff7;
  margin-bottom: 14px;
}

.contactTxt {
  width: 80%;
  font-size: 18px;
  color: #cad5e2;
  margin-bottom: 32px;
}

.contactBtnBox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 32px;
}

.contactBtnBox a {
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  padding: 18px 26px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s ease-in-out;
}

.contactBtnBox a:first-child {
  background: #ffffff;
  color: #0f172b;
}

.contactBtnBox a:last-child {
  color: #ffffff;
}

.contactBtnBox a:first-child:hover {
  background: #f1f5f9;
}

.contactBtnBox a:last-child:hover {
  background: #ffffff;
  color: #0f172b;
}

.socialIcons {
  display: flex;
  list-style: none;
  justify-content: center;
  align-items: center;
  gap: 35px;
  padding-left: 0;
}

.socialIcons li a {
  color: #ffffff;
  padding: 5px 10px 9px 10px;
  transition: all 0.2s ease-in-out;
}

.socialIcons li a:hover {
  color: #171717;
  background: #3f4555;
  color: #808080;
  padding: 5px 10px 9px 10px;
  border-radius: 100%;
}

.socialIcons li a svg {
  height: 17px;
  width: 17px;
}

@media (max-width: 768px) {
  .heroSection {
    padding: 10px 20px;
    padding-top: 6rem;
  }

  .heroSection h1 {
    font-size: 32px;
  }

  .dsgTxt {
    font-size: 18px;
  }

  .introPara {
    font-size: 16px;
  }

  .ctaContainer {
    gap: 14px;
  }

  .stasBox span {
    font-size: 27px;
    font-weight: 700;
  }

  .statsCounterSection {
    margin: 50px 0;
  }

  .stasBox p {
    font-size: 14px;
  }

  .servicesSection .card h3 {
    font-size: 16px;
  }

  .svgBox {
    padding: 6px 8px;
  }

  .svgBox svg {
    height: 24px;
    width: 24px;
  }

  .servicesSection .card:hover .svgBox svg {
    height: 26px;
    width: 26px;
  }

  .projectSection h2,
  .connectionSection h2 {
    font-size: 30px;
  }

  .projectTxt {
    font-size: 18px;
  }

  .projectSection .card {
    margin-bottom: 1.8rem;
  }

  .projectImgBox {
    height: auto;
  }

  .projectImgBox img {
    width: 85%;
    height: 85%;
  }

  .connectionSection {
    padding: 40px 0;
    padding-bottom: 100px;
  }

  .connectionSection .projectTxt {
    margin-bottom: 40px;
  }

  .contactBox {
    padding: 60px 0;
  }

  .contactBox h3 {
    font-size: 23px;
  }

  .contactTxt {
    font-size: 16px;
  }

  .contactBtnBox {
    flex-direction: column;
  }

  .contactBtnBox a {
    width: 80%;
    justify-content: center;
  }

  footer .container .row {
    gap: 20px;
  }

  .leftTxt ul {
    flex-wrap: wrap;
    justify-content: start;
    gap: 0;
    padding-bottom: 28px;
  }

  .socialIcons li a:hover {
    padding: 10px 12px 11px 12px;
  }
}
