@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Outfit:wght@100..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --font-family-primary: "Outfit", sans-serif;
  --font-family-secondary: "Manrope", sans-serif;
  --font-family-tertiary: "Raleway", sans-serif;
  --ithub-primary-blue: #000dff;
  --ithub-text-dark: #000;
  --ithub-text-gray: #6b7280;
  --ithub-white: #ffffff;
  --ithub-gradient: linear-gradient(90deg, #000dff 0%, #c115ec 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: #000;
  font-family: var(--font-family-primary);
  overflow-x: hidden;
}

.ithub-hero-wrapper {
  position: relative;
  background-image: url("../images/hero-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 10px;
  border-radius: 25px;
}

@media (max-width: 600px) {
}

/* .ithub-hero-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(79, 70, 229, 0.88) 0%,
    rgba(124, 58, 237, 0.78) 100%
  );
  z-index: 1;
} */

/* .ithub-hero-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(255, 255, 255, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(255, 255, 255, 0.06) 0%,
      transparent 50%
    );
  z-index: 1;
} */

.ithub-hero-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 50px 0px 0px 24px;
  position: relative;
  z-index: 2;
  min-height: 100vh;
}
@media (min-width: 301px) and (max-width: 1024px) {
  .ithub-hero-container {
    min-height: auto;
  }
}

@media (max-width: 1200px) {
  .ithub-hero-container {
    padding: 42px 0px 0px 24px;
  }
}

.ithub-navbar-structure {
  position: relative;
}

.ithub-contact-section {
  position: absolute;
  top: -42px;
  left: 0px;
  z-index: 10;
  width: 95%;
  display: flex;
  gap: 6px;
  align-items: center;
  padding: 8px 20px 2px;
  background: url("../images/Headertop.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

@media (min-width: 1600px) {
  .ithub-contact-section {
    width: 75%;
  }
}
@media (max-width: 1200px) {
  .ithub-contact-section {
    background: none;
  }
}

@media (min-width: 1400px) and (max-width: 1599px) {
  .ithub-contact-section {
    width: 84% !important;
  }
  .ithub-contact-details {
    left: 4.2% !important;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .ithub-contact-section {
    width: 95% !important;
  }
  .ithub-contact-details {
    left: 4.2% !important;
  }
}

.ithub-contact-details {
  position: relative;
  background: linear-gradient(90deg, #000dff, #c115ec);
  border-radius: 50px;
  left: 7.2%;
  display: flex;
}

@media (max-width: 420px) {
  .ithub-contact-details {
    left: 1%;
  }
}

@media (min-width: 1600px) {
  .ithub-contact-details {
    left: 4.2%;
  }
}

.ithub-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  text-decoration: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
  color: #fff;
}

@media (max-width: 600px) {
  .ithub-contact-item {
    font-size: 13px;
  }
}

@media (max-width: 360px) {
  .ithub-contact-item {
    font-size: 10px !important;
  }
}

.ithub-contact-item svg {
  flex-shrink: 0;
}

.ithub-main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  background: var(--ithub-white);
  border-radius: 50px;
  position: relative;
  z-index: 200;
}

.ithub-main-nav img {
  width: 160px;
  height: auto;
}

.ithub-menu-list {
  display: flex;
  list-style: none;
  gap: 28px;
  align-items: center;
}

.ithub-menu-list li {
  position: relative;
}

.ithub-menu-list a {
  color: var(--ithub-dark);
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.ithub-menu-list a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--ithub-gradient);
  transition: width 0.3s ease;
}

.ithub-menu-list a:hover {
  color: var(--ithub-blue);
}

.ithub-menu-list a:hover::after {
  width: 100%;
}

.ithub-blog-active {
  color: #4f46e5 !important;
}

.ithub-mobile-btn-item {
  display: none;
}

.ithub-nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ithub-hamburger-icon {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ithub-hamburger-icon:hover {
  background: #f3f4f6;
}

.ithub-hamburger-icon svg {
  color: var(--ithub-dark);
}

.ithub-cta-desktop {
  padding: 14px 28px;
  background: var(--ithub-gradient);
  color: var(--ithub-white);
  border: none;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--font-family-secondary);
}

.ithub-hamburger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 102;
}

.ithub-hamburger-btn span {
  width: 24px;
  height: 3px;
  background: var(--ithub-primary-blue);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.ithub-hamburger-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.ithub-hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}

.ithub-hamburger-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.ithub-hero-content-area {
  position: relative;
  padding: 100px 0 60px;
}

.ithub-text-content {
  max-width: 780px;
}

@media (max-width: 640px) {
  .ithub-text-content {
    margin-bottom: 50px;
  }
}

@media (max-width: 400px) {
  .ithub-text-content {
    margin-bottom: 24px;
  }
}

.ithub-hero-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--ithub-white);
  margin-bottom: 28px;
  letter-spacing: -1.5px;
}

.ithub-stroke-text {
  color: transparent;
  -webkit-text-stroke: 2.5px #fff;
  /* text-stroke: 2.5px #fff; */
  font-weight: 700;
  font-family: var(--font-family-tertiary);
}

.ithub-hero-text {
  font-size: 18px;
  line-height: 1.7;
  color: #fff;
  margin-bottom: 40px;
  font-weight: 500;
  max-width: 700px;
  font-family: var(--font-family-secondary);
}

.ithub-expert-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  background: var(--ithub-gradient);
  color: var(--ithub-white);
  border: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-family-secondary);
  margin-bottom: 40px;
}

.ithub-expert-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

.ithub-expert-cta svg {
  transition: transform 0.3s ease;
}

.ithub-arrow-path {
  position: absolute;
  bottom: 50px;
}

@media (max-width: 600px) {
  .ithub-arrow-path {
    right: 0;
    height: 150px;
    bottom: 40px;
    z-index:-1;
  }
}
/* .ithub-overlay-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 98;
  opacity: 0;
  transition: opacity 0.3s ease;
} */

.ithub-overlay-mobile.active {
  display: block;
  opacity: 1;
}

@media (max-width: 1200px) {
  .ithub-menu-list {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 320px;
    max-width: 85vw;
    background: var(--ithub-white);
    flex-direction: column;
    padding: 100px 40px 40px;
    gap: 20px;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: flex-start;
    z-index: 99;
    overflow-y: auto;
  }

  .ithub-menu-list.active {
    right: 0;
  }

  .ithub-mobile-btn-item {
    display: block;
    width: 100%;
    margin-top: 16px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
  }

  .ithub-mobile-cta-link {
    display: block;
    text-align: center;
    padding: 14px 28px;
    background: var(--ithub-gradient);
    color: var(--ithub-white) !important;
    border-radius: 50px;
    font-weight: 700 !important;
    border: none;
  }

  .ithub-mobile-cta-link::after {
    display: none;
  }

  .ithub-cta-desktop {
    display: none;
  }

  .ithub-hamburger-icon {
    display: flex;
  }

  .ithub-hamburger-btn {
    display: flex;
  }
}

@media (max-width: 968px) {
  .ithub-main-nav {
    padding: 14px 24px;
  }

  .ithub-hero-content-area {
    padding: 90px 0 100px;
  }

  .ithub-hero-title {
    font-size: 48px;
  }

  .ithub-hero-text {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .ithub-hero-wrapper {
    padding: 16px 0 10px;
  }

  .ithub-contact-section {
    left: 0px;
    transform: none;
    flex-wrap: wrap;
    padding: 12px 16px 24px;
    background-size: contain;
  }

  .ithub-main-nav {
    padding: 12px 20px;
    padding-top: 18px;
  }

  .ithub-hero-title {
    font-size: 40px;
    letter-spacing: -1px;
  }

  .ithub-stroke-text {
    -webkit-text-stroke: 2px #fff;
  }

  .ithub-hero-text {
    font-size: 15px;
    line-height: 1.6;
  }

  .ithub-expert-cta {
    padding: 16px 30px;
    font-size: 15px;
  }
}

@media (max-width: 640px) {
  .ithub-logo-text {
    font-size: 20px;
  }

  .ithub-hero-content-area {
    padding: 70px 0 80px;
  }

  .ithub-hero-title {
    font-size: 36px;
  }

  .ithub-hero-text {
    font-size: 15px;
    margin-bottom: 32px;
  }
}

@media (max-width: 480px) {
  .ithub-contact-section {
    padding: 6px 16px 1px;
  }
  .ithub-contact-item {
    justify-content: center;
    width: 100%;
    font-size: 12.5px;
  }

  .ithub-hero-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .ithub-stroke-text {
    -webkit-text-stroke: 1.5px #fff;
  }

  .ithub-hero-text {
    font-size: 14px;
  }

  .ithub-expert-cta {
    justify-content: center;
    padding: 14px 24px;
    font-size: 14px;
  }
}

/*===================client section====================*/
.client-section {
  width: 100%;
  padding: 30px 0;
  background: #000;
}

.client-container {
  max-width: 1600px;
  margin: auto;
  padding: 0 40px;
}

@media (max-width: 600px) {
  .client-container {
    padding: 0px 24px;
  }
}

.client-pill {
  background: #fff;
  border-radius: 60px;
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.client-text {
  font-size: 19px;
  font-weight: 500;
  color: #000;
  line-height: 1.3;
  white-space: nowrap;
  font-family: var(--font-family-secondary);
}

.client-logos {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

@media (min-width: 601px) and (max-width: 1024px) {
  .client-logos {
    gap: 8px;
  }
}

.client-logos img {
  height: 50px;
  width: auto;
}

@media (min-width: 1600px) {
  .client-logos img {
    height: 65px;
    width: auto;
  }
}

@media (max-width: 1100px) {
  .client-pill {
    gap: 25px;
  }
  .client-logos img {
    height: 40px;
  }
}

@media (max-width: 900px) {
  .client-pill {
    flex-direction: column;
    border-radius: 28px;
    text-align: center;
    padding: 22px;
  }

  .client-text {
    white-space: normal;
  }

  .client-logos {
    justify-content: center;
    gap: 18px;
  }
}

@media (max-width: 520px) {
  .client-section {
    padding: 40px 0;
  }

  .client-pill {
    border-radius: 22px;
  }

  .client-logos {
    gap: 12px;
  }

  .client-logos img {
    height: 35px;
  }
}

/*==================about section===========================*/
.sdlc-about-section {
  background-color: #000;
  background-image: url("../images/about-us-bg.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
  max-width: 100%;
  margin: auto;
}

/*@media(min-width:1400px) {
.sdlc-about-section {
max-width:100% !important;
padding:40px 4% !important;
}
}*/

/* .sdlc-about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 20% 30%,
    rgba(79, 70, 229, 0.08) 0%,
    transparent 50%
  );
  pointer-events: none;
} */

.sdlc-about-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.sdlc-row-first {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.sdlc-heading-area {
  flex: 1;
  padding-top: 20px;
}

.sdlc-section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.sdlc-label-text {
  font-size: 18px;
  font-weight: 800;
  color: var(--ithub-primary-blue);
  text-transform: uppercase;
  font-family: var(--font-family-secondary);
}

.sdlc-label-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.sdlc-dot-blue1 {
  background: linear-gradient(90deg, #02aaea, #bc22fa);
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.sdlc-dot-blue2 {
  background: linear-gradient(90deg, #02aaea, #bc22fa);
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.sdlc-dot-blue3 {
  background: linear-gradient(90deg, #02aaea, #bc22fa);
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.sdlc-dot-blue1,
.sdlc-dot-blue2,
.sdlc-dot-blue3 {
  animation: sdlcPulse 1.7s ease-in-out infinite;
  transform-origin: center;
  opacity: 0.4;
}

.sdlc-dot-blue1 {
  animation-delay: 0s;
}

.sdlc-dot-blue2 {
  animation-delay: 0.3s;
}

.sdlc-dot-blue3 {
  animation-delay: 0.6s;
}

@keyframes sdlcPulse {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.6);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.4;
  }
}

.sdlc-main-heading {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  max-width: 460px;
}

.sdlc-image-top {
  flex: 1;
  height: 300px;
  width: 400px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.sdlc-img-laptop {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.5s ease;
}

.sdlc-row-second {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.sdlc-description-area {
  flex: 0.38;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  margin-top: -100px;
}

@media (max-width: 968px) {
  .sdlc-description-area {
    margin-top: 0;
  }
}

.sdlc-description-para {
  font-size: 18px;
  line-height: 1.7;
  color: #fff;
  font-weight: 500;
  font-family: var(--font-family-secondary);
}

.sdlc-description-para strong {
  color: #fff;
  font-weight: 800;
}

.sdlc-image-team {
  flex: 0.38;
  height: 450px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  margin-top: -45px;
}

@media (max-width: 968px) {
  .sdlc-image-team {
    margin-top: 0;
  }
}

.sdlc-img-team {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.sdlc-capabilities-card {
  flex: 0.24;
  border-radius: 24px;
  padding: 36px 24px 0px 24px;
  display: flex;
  flex-direction: column;
}

.sdlc-card-title {
  font-size: 23px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #fff;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.sdlc-capabilities-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sdlc-capability-item {
  font-size: 14px;
  line-height: 1.5;
  color: #fff;
  padding-left: 18px;
  position: relative;
  font-weight: 500;
  font-family: var(--font-family-secondary);
}

.sdlc-capability-item::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--sdlc-blue);
  font-size: 18px;
  font-weight: 900;
}

@media (max-width: 1200px) {
  .sdlc-row-first {
    gap: 40px;
  }

  .sdlc-row-second {
    gap: 20px;
  }

  .sdlc-main-heading {
    font-size: 48px;
  }

  .sdlc-description-para {
    font-size: 16px;
  }

  .sdlc-capability-item {
    font-size: 12px;
  }
}

@media (max-width: 968px) {
  .sdlc-about-section {
    padding: 80px 0;
  }

  .sdlc-about-container {
    gap: 50px;
  }

  .sdlc-row-first {
    flex-direction: column;
    gap: 30px;
  }

  .sdlc-heading-area {
    padding-top: 0;
  }

  .sdlc-main-heading {
    font-size: 44px;
    max-width: 100%;
  }

  .sdlc-image-top {
    height: 100%;
    width: 100%;
  }

  .sdlc-row-second {
    flex-direction: column;
    gap: 24px;
  }

  .sdlc-image-team {
    height: 100%;
    width: 100%;
  }

  .sdlc-capabilities-card {
    padding: 32px 28px;
  }

  .sdlc-card-title {
    font-size: 18px;
  }

  .sdlc-capability-item {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .sdlc-about-section {
    padding: 48px 0;
  }

  .sdlc-about-container {
    padding: 0 20px;
    gap: 40px;
  }

  .sdlc-main-heading {
    font-size: 38px;
    margin-bottom: 0;
  }

  .sdlc-section-label {
    margin-bottom: 20px;
  }

  .sdlc-description-para {
    font-size: 15px;
  }

  .sdlc-row-second {
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .sdlc-about-section {
    padding: 36px 0;
  }

  .sdlc-about-container {
    gap: 32px;
  }

  .sdlc-label-text {
    font-size: 12px;
  }

  .sdlc-main-heading {
    font-size: 34px;
    letter-spacing: -1px;
  }

  .sdlc-description-area {
    gap: 16px;
  }

  .sdlc-description-para {
    font-size: 14px;
    line-height: 1.6;
  }

  .sdlc-capabilities-card {
    border-radius: 20px;
    padding: 24px 20px;
  }

  .sdlc-card-title {
    font-size: 15px;
    margin-bottom: 16px;
  }

  .sdlc-capabilities-list {
    gap: 12px;
  }

  .sdlc-capability-item {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .sdlc-about-section {
    padding: 24px 0;
  }

  .sdlc-about-container {
    padding: 0 16px;
    gap: 28px;
  }

  .sdlc-row-first {
    gap: 24px;
  }

  .sdlc-main-heading {
    font-size: 30px;
  }

  .sdlc-row-second {
    gap: 16px;
  }

  .sdlc-capabilities-card {
    border-radius: 16px;
    padding: 20px 16px;
  }

  .sdlc-card-title {
    font-size: 14px;
  }

  .sdlc-capability-item {
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.sdlc-img-laptop,
.sdlc-img-team,
.sdlc-capabilities-card,
.sdlc-dot {
  will-change: transform;
}

.sdlc-capabilities-card,
.sdlc-image-top,
.sdlc-image-team {
  transform: translateZ(0);
  backface-visibility: hidden;
}

.sdlc-img-laptop,
.sdlc-img-team {
  content-visibility: auto;
}

/*====================counter section=======================*/
.achieve-section {
  width: 100%;
  padding: 80px 0px 120px 0px;
  background: url("../images/counter-section-bg.webp") center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.achieve-container {
  max-width: 1300px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 60px;
}

.achieve-left img {
  width: 320px;
  max-width: 100%;
  visibility: hidden;
}

.achieve-right {
  flex: 1;
}

.achieve-right h2 {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 40px;
  line-height: 1.2;
}

.achieve-boxes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.achieve-box {
  padding: 16px;
  text-align: left;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  position: relative;
}

.achieve-box:last-child {
  border-right: none;
}

.achieve-box p {
  font-size: 15px;
  color: #fff;
  height: 60px;
  margin-bottom: 12px;
  font-weight: 700;
  line-height: 1.4;
  font-family: var(--font-family-secondary);
}

.achieve-box h3 {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  display: inline-block;
  font-family: var(--font-family-secondary);
}

.suffix {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-left: 4px;
}

@media (max-width: 1200px) {
  .achieve-section {
    background: url("../images/counter-section-bg-small.png") center/cover
      no-repeat;
  }
  .achieve-container {
    gap: 0px;
    padding: 0px 40px;
  }
  .achieve-left img {
    display: none;
  }
  .achieve-right h2 {
    font-size: 40px;
  }

  .achieve-boxes {
    grid-template-columns: repeat(2, 1fr);
  }
  .achieve-box:nth-child(2n) {
    border-right: none;
  }
}

@media (max-width: 900px) {
  .achieve-container {
    flex-direction: column;
    text-align: center;
  }

  .achieve-right h2 {
    font-size: 34px;
  }

  .achieve-box {
    text-align: center;
  }
}

@media (max-width: 520px) {
  .achieve-section {
    padding: 60px 0;
  }

  .achieve-right h2 {
    font-size: 26px;
  }

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

  .achieve-box {
    border-right: none;
  }

  .achieve-box h3 {
    font-size: 26px;
  }
}

/* ==================== TECH STACK SECTION ==================== */
.techstack-section {
  background-color: #000;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.techstack-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.techstack-header {
  text-align: center;
  margin-bottom: 60px;
}

.techstack-label-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.techstack-label {
  font-size: 20px;
  font-weight: 800;
  color: var(--ithub-primary-blue);
  text-transform: uppercase;
  font-family: var(--font-family-secondary);
}

.techstack-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.techstack-heading {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  letter-spacing: -1.5px;
}

.techstack-tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 50px;
}

.techstack-tab-btn {
  padding: 14px 28px;
  background-color: #1b191b;
  border: 1px solid #1b191b;
  border-radius: 12px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--font-family-secondary);
}

.techstack-tab-btn.active {
  background: #2563eb;
  color: #fff;
}

.techstack-tabs-content {
  position: relative;
}

.techstack-tab-panel {
  display: none;
  opacity: 0;
  animation: techstackFadeIn 0.4s ease forwards;
}

.techstack-tab-panel.active {
  display: block;
}

@keyframes techstackFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.techstack-tech-grid {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin: 0 auto;
}

.techstack-tech-card {
  background: #fff;
  padding: 18px 14px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  border-radius: 16px;
  width: 160px;
  height: auto;
}
@media (min-width: 601px) and (max-width: 1024px) {
  .techstack-tech-card {
    width: 144px;
  }
}

@media(max-width:450px){
.techstack-tech-card {
width:110px;
height:auto;
}

}
.techstack-tech-card img {
  width: 56px;
  height: auto;
  margin-bottom: 12px;
}

@media(max-width:450px){
.techstack-tech-card img {
  width: 38px;
  height: auto;
 }

} 

.techstack-tech-card p {
  font-family: var(--font-family-secondary);
  font-weight: 500;
  font-size: 16px;
  text-align: center;
}

@media (max-width: 768px) {
  .techstack-tabs-nav {
    flex-direction: column;
    gap: 0;
    margin-bottom: 0;
  }

  .techstack-tab-btn {
    width: 100%;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 18px 24px;
    text-align: left;
    position: relative;
  }

  .techstack-tab-btn::after {
    content: "▼";
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    transition: transform 0.3s ease;
  }

  .techstack-tab-btn.active::after {
    transform: translateY(-50%) rotate(180deg);
  }

  .techstack-tab-btn.active {
    border-radius: 0;
    box-shadow: none;
  }

  .techstack-tabs-content {
    display: none;
  }

  .techstack-tab-panel {
    display: none;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 0;
  }

  .techstack-tab-panel.active {
    display: block;
  }

  .techstack-tab-btn {
    margin-bottom: 0;
  }
}

@media (max-width: 1024px) {
  .techstack-heading {
    font-size: 48px;
  }

  .techstack-tech-grid {
    display: flex;
    gap: 24px;
  }
}

@media (max-width: 968px) {
  .techstack-section {
    padding: 80px 0;
  }

  .techstack-header {
    margin-bottom: 50px;
  }

  .techstack-heading {
    font-size: 44px;
  }

  .techstack-tech-grid {
    display: flex;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .techstack-section {
    padding: 60px 0;
  }

  .techstack-container {
    padding: 0 20px;
  }

  .techstack-header {
    margin-bottom: 40px;
  }

  .techstack-label {
    font-size: 12px;
  }

  .techstack-heading {
    font-size: 38px;
    letter-spacing: -1px;
  }

  .techstack-tech-grid {
    display: flex;
    flex-wrap: wrap;
  }

  .techstack-tech-card {
    padding: 24px 16px;
  }

  .techstack-tech-icon {
    width: 64px;
    height: 64px;
  }

  .techstack-tech-name {
    font-size: 14px;
  }
}

@media (max-width: 640px) {
  .techstack-heading {
    font-size: 34px;
  }

  .techstack-tech-card {
    padding: 20px 12px;
    gap: 12px;
  }

  .techstack-tech-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
  }

  .techstack-tech-name {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .techstack-section {
    padding: 50px 0;
  }

  .techstack-container {
    padding: 0 16px;
  }

  .techstack-heading {
    font-size: 30px;
  }

  .techstack-tech-card {
    flex-direction: column;
    justify-content: flex-start;
    padding: 16px;
    gap: 2px;
  }

  .techstack-tech-icon {
    width: 48px;
    height: 48px;
  }

  .techstack-tech-name {
    font-size: 14px;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.techstack-tab-btn,
.techstack-tech-card,
.techstack-tech-icon,
.techstack-dot {
  will-change: transform;
}

.techstack-tab-panel,
.techstack-tech-card {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* ==================== SERVICES SECTION ==================== */
.srv-section {
  background: url("../images/services-bg.webp");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 30px 0;
}

.srv-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.srv-left {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  min-height: 600px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.srv-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.srv-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.srv-overlay {
  position: relative;
  z-index: 2;
  padding: 48px;
  height: 100%;
  display: flex;
  align-items: center;
}

.srv-content {
  display: none;
  color: white;
}

.srv-content.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.srv-content h3 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.srv-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 100px;
  font-family: var(--font-family-secondary);
}

@media (max-width: 968px) {
  .srv-content p {
    margin-bottom: 50px;
  }
}

.srv-content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.srv-content li {
  padding-left: 20px;
  position: relative;
  font-size: 16px;
  line-height: 1.6;
}

.srv-content li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--srv-blue);
  font-size: 24px;
  font-weight: 900;
}

.srv-content strong {
  display: block;
  font-size: 22px;
  margin-bottom: 4px;
  font-family: var(--font-family-secondary);
}

.srv-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-block: 60px;
}

.srv-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.srv-label {
  display: flex;
  align-items: center;
  gap: 12px;
}

.srv-label span {
  font-size: 20px;
  font-weight: 800;
  color: #000dff;
}

.srv-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
}

.srv-header h2 {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.1;
  color: #000;
}

.srv-tabs {
  display: flex;
  flex-direction: column;
}

.srv-tab {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  margin-right: 24px;
}

.srv-tab:first-child {
  border-radius: 16px 16px 0 0;
}

.srv-tab:last-child {
  border-radius: 0 0 16px 16px;
}

.srv-icon {
  position: relative;
  flex-shrink: 0;
}

.srv-icon img {
  width: 44px;
  height: 44px;
}

.srv-icon svg path {
  transition: all 0.3s;
}

.srv-icon span {
  position: absolute;
  top: -4px;
  left: 0px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: #6b7280;
  transition: all 0.3s;
}

.srv-title {
  flex: 1;
  font-size: 17px;
  font-weight: 700;
  color: #000;
  font-family: var(--font-family-secondary);
}

.srv-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  flex-shrink: 0;
  position: absolute;
  right: -15px;
  bottom: -16px;
  background-color: #eee;
}

.srv-arrow::before {
  content: "↗";
  font-size: 20px;
  color: #989898;
  transition: all 0.3s;
}

.srv-tab.active .srv-arrow {
  background: var(--ithub-gradient);
}

.srv-tab.active .srv-arrow::before {
  color: white;
}

.srv-tab.active .srv-icon svg circle {
  stroke: url(#gradient);
}

.srv-tab.active .srv-icon svg path {
  fill: url(#gradient);
}

.srv-tab.active .srv-icon span {
  background: var(--ithub-gradient);
  color: white;
}

.srv-tab.active .srv-title {
  background: var(--ithub-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.srv-tab.active .srv-arrow {
  background: var(--ithub-gradient);
}

.srv-icon svg {
  background: none;
}

@media (max-width: 968px) {
  .srv-container {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .srv-left {
    display: none;
  }

  .srv-right {
    gap: 16px;
    padding-block: 0;
  }

  .srv-tab {
    position: relative;
  }

  .srv-tab::after {
    content: "▼";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #9ca3af;
    transition: transform 0.3s;
  }

  .srv-tab.active::after {
    transform: translateY(-50%) rotate(180deg);
  }

  .srv-arrow {
    display: none;
  }

  .srv-content {
    padding: 28px 20px;
    background: url(../images/services-left-section-bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    border-bottom: 1px solid #e5e7eb;
    color: #fff;
    border-radius: 36px;
  }

  .srv-content h3 {
    font-size: 28px;
    color: #fff;
  }

  .srv-content p,
  .srv-content li {
    color: #fff;
    font-weight: 500;
  }
}

@media (max-width: 768px) {
  .srv-section {
    padding: 60px 0;
    background-attachment: scroll;
  }

  .srv-header h2 {
    font-size: 32px;
  }
}

@media (max-width: 640px) {
  .srv-section {
    padding: 50px 0;
  }

  .srv-container {
    padding: 0 16px;
  }

  .srv-header h2 {
    font-size: 28px;
  }

  .srv-tab {
    padding: 16px;
  }

  .srv-icon {
    width: 40px;
    height: 40px;
  }

  .srv-icon span {
    width: 20px;
    height: 20px;
    font-size: 11px;
  }

  .srv-title {
    font-size: 15px;
  }

  .srv-content h3 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .srv-header h2 {
    font-size: 26px;
  }

  .srv-tab {
    padding: 14px;
    gap: 12px;
  }

  .srv-icon {
    width: 36px;
    height: 36px;
  }

  .srv-title {
    font-size: 14px;
  }

  .srv-content h3 {
    font-size: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* case study section */
.csx-case-study-section {
  color: #fff;
  padding: 50px 0;
  background: url(../images/our-expertise-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
}

.csx-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

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

.csx-subtitle {
  color: #000dff;
  font-size: 18px;
  font-family: var(--font-family-secondary);
  font-weight: 700;
}

.csx-title {
  font-size: 42px;
  margin: 10px 0;
}

.csx-nav {
  display: flex;
  gap: 12px;
}

.csx-btn {
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 18px;
}

.csx-btn img {
  width: 48px;
  height: 48px;
}

.csx-slider-wrapper {
  overflow: hidden;
  margin-top: 40px;
}

.csx-slider {
  display: flex;
  transition: transform 0.4s ease;
  gap: 10px;
}

.csx-slide {
  min-width: calc(100% / 3);
  position: relative;
  cursor: pointer;
  border-radius: 16px;
  overflow: hidden;
}

.csx-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.csx-card {
  position: absolute;
  bottom: 24px;
  left: 40px;
  display: flex;
  justify-content: space-between;
  width: 80%;
  background-color: #fff;
  color: #000;
  padding: 24px;
  font-family: var(--font-family-secondary);
}

.csx-card span {
  color: #000dff;
  margin-bottom: 24px;
  font-size: 18px;
  font-weight: 600;
}

.csx-arrow {
  align-self: flex-end;
}

.csx-card h4 {
  margin-top: 16px;
  font-size: 18px;
  font-weight: 500;
}

.csx-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.csx-modal.active {
  display: block;
}

.csx-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.csx-modal-box {
  position: relative;
  background: #fff;
  color: #000;
  width: 90%;
  max-width: 700px;
  margin: 10vh auto;
  border-radius: 16px;
  padding: 24px 36px;
  animation: csxFade 0.3s ease;
}

.csx-modal-box h3 {
  font-size: 36px;
  margin-bottom: 20px;
}

@media (max-width: 1024px) {
  .csx-modal-box h3 {
    font-size: 30px;
    margin-bottom: 14px;
  }
}

.csx-modal-box p {
  font-family: var(--font-family-secondary);
}

.csx-popup-content {
  display: none;
}

.csx-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

@keyframes csxFade {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.csx-close {
  position: absolute;
  top: 12px;
  right: 12px;
  border: none;
  background: #eee;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
}

.csx-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
  font-family: var(--font-family-secondary);
}

.csx-modal h4 {
  margin-bottom: 8px;
}

@media (max-width: 1024px) {
  .csx-slide {
    min-width: calc(100% / 2);
  }
}

@media (max-width: 640px) {
  .csx-slide {
    min-width: 100%;
  }

  .csx-nav-desktop {
    display: none;
  }

  .csx-nav-mobile {
    justify-content: center;
    margin-top: 20px;
  }

  .csx-title {
    font-size: 32px;
  }

  .csx-modal-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 641px) {
  .csx-nav-mobile {
    display: none;
  }
}

/*our expertise section*/
.industry-section {
  width: 100%;
  padding: 50px 0;
  background: url("../images/our-expertise-bg.webp");
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
}

.industry-container {
  max-width: 1300px;
  margin: auto;
  padding: 0 48px;
}

.industry-header {
  text-align: center;
  margin-bottom: 50px;
}

.industry-tag {
  font-size: 20px;
  font-weight: 800;
  color: #000dff;
  font-family: var(--font-family-secondary);
  display: inline-flex;
}

.industry-header h2 {
  font-size: 42px;
  font-weight: 800;
  margin: 12px 0 10px;
}

.industry-header p {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  font-family: var(--font-family-secondary);
}

.industry-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

@media(max-width:540px) {
.industry-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
}
}

@media(max-width:320px) {
.industry-grid {
display: grid;
grid-template-columns: 1fr;
}
}


.industry-card {
  flex: 0 0 calc(25% - 16.5px);
  border-radius: 18px;
  transition: 0.3s ease;
}

.industry-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.industry-card:hover {
  transform: translateY(-4px);
}

@media (max-width: 1200px) {
  .industry-card {
    flex: 0 0 calc(33.333% - 14.7px);
  }
}

@media (max-width: 900px) {
  .industry-header h2 {
    font-size: 34px;
  }
  .industry-card {
    flex: 0 0 calc(50% - 11px);
  }
}

@media (max-width: 520px) {
  .industry-container {
    padding-inline: 24px;
  }
  .industry-header h2 {
    font-size: 26px;
  }
  .industry-card {
    flex: 0 0 100%;
  }
}

/*testimonia section*/
.tsx-testimonial-section {
  background: url(../images/testimonial-section-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  padding: 50px 0px 100px 0px;
  overflow: hidden;
}

@media(max-width:1024px) {
.tsx-testimonial-section {
  padding: 40px 0px 40px 0px;
 }

}

.tsx-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.tsx-left {
  position: relative;
  width: 80%;
  align-self: start;
}

.tsx-subtitle {
  color: #000dff;
  font-weight: 800;
  font-family: var(--font-family-secondary);
  font-size: 18px;
}

.tsx-title {
  font-size: 40px;
  line-height: 1.1;
  margin: 12px 0;
}

.tsx-desc {
  color: #fff;
  font-family: var(--font-family-secondary);
  max-width: 450px;
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 18px;
}

.tsx-talk {
  color: #bc15ed;
  font-weight: 800;
  margin-bottom: 20px;
  font-family: var(--font-family-secondary);
  display: flex;
  font-size: 20px;
}

.tsx-talk img {
  width: 28px;
  height: auto;
  margin-left: 16px;
}

.tsx-btn-div {
  display: flex;
  justify-content: end;
}

@media (min-width: 601px) and (max-width: 1024px) {
  .tsx-btn-div {
    justify-content: center;
  }
}

.tsx-btn {
  background: linear-gradient(135deg, #000dff, #c115ec);
  border: none;
  color: #fff;
  padding: 14px 28px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 20px;
  letter-spacing: 0.5px;
  font-weight: 700;
}

.tsx-path {
  position: absolute;
  bottom: -66px;
  left: 56px;
  width: 230px;
  pointer-events: none;
}

@media (max-width: 420px) {
  .tsx-path {
    width: 150px;
    left: 0;
    bottom: -56px;
  }
}

@media (min-width: 421px) and (max-width: 912px) {
  .tsx-path {
    width: 250px;
    left: 0;
    bottom: -70px;
  }
}

.tsx-slider-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-left: auto;
  border-radius: 22px;
}

.tsx-slider-track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}

.tsx-slider {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
}

.tsx-slide {
  flex: 0 0 100%;
}

.tsx-track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

.tsx-card {
  position: relative;
  background: url("../images/testimonial-card-bg.webp");
  background-size: cover;
  background-repeat: no-repeat;
  color: #000;
  border-radius: 22px;
  padding: 48px 32px 60px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.tsx-bg-shape {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
  background: radial-gradient(
    circle,
    rgba(217, 70, 239, 0.35),
    transparent 70%
  );
  z-index: 0;
}

.tsx-card * {
  position: relative;
  z-index: 1;
}

.tsx-user {
  display: flex;
  gap: 14px;
  align-items: center;
}

.tsx-user img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
}

.tsx-user h4 {
  margin: 0;
  color: #000dff;
  font-weight: 700;
  font-size: 20px;
}

.tsx-user span {
  font-size: 16px;
  font-family: var(--font-family-secondary);
  color: #000;
  font-weight: 400;
}

.tsx-quote {
  margin: 20px 0;
  font-size: 20px;
  line-height: 1.6;
  height: 220px;
  font-family: var(--font-family-secondary);
  font-weight: 500;
  color: #000;
}

.tsx-rating {
  position: absolute;
  right: 22px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 600;
  color: #bc15ed;
  margin-bottom: 40px;
}

.tsx-rate-num {
  color: #000;
  font-family: var(--font-family-secondary);
  font-size: 20px;
  font-weight: 500;
}

.tsx-nav {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  gap: 5px;
}

.tsx-nav-btn {
  border-radius: 50%;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  background: transparent;
}

.tsx-nav-btn img {
  width: 44px;
  height: 44px;
}

.tsx-nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

@media (max-width: 1024px) {
  .tsx-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .tsx-slider-wrapper {
    margin: 0;
    margin-top: 50px;
  }
}

@media (max-width: 600px) {
  .tsx-title {
    font-size: 34px;
  }

  .tsx-card {
    padding: 50px 30px 70px 30px;
  }

  .tsx-nav {
    left: 50%;
    bottom: 1px;
    transform: translateX(-50%);
  }
}

/*price section*/
.price-section {
  width: 100%;
  padding: 40px;
  background: #ffffff;
}

.price-wrapper {
  max-width: 1200px;
  margin: auto;
  background: #e9edf4;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.price-profile {
  width: 280px;
  background: transparent;
  border-radius: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.profile-img {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 15px;
}

.profile-img img {
  width: 100%;
  height: auto;
  display: block;
}

.price-profile h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 8px 0 4px;
  color: #000;
  font-family: var(--font-family-secondary);
}

.price-profile p {
  font-size: 16px;
  color: #000;
  margin: 0;
  font-weight: 500;
  font-family: var(--font-family-secondary);
}
.price-content {
  flex: 1;
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.price-label {
  font-size: 20px;
  font-weight: 800;
  color: #000dff;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-family-secondary);
}

.price-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin: 10px 0 18px;
  color: #000;
}

.price-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #667085;
  margin-bottom: 12px;
  max-width: 620px;
  font-family: var(--font-family-secondary);
}

@media (max-width: 992px) {
  .price-wrapper {
    flex-direction: column;
    padding: 22px;
  }

  .price-profile {
    width: 100%;
    flex-direction: column;
    align-items: center;
    text-align: left;
    gap: 18px;
  }

  .profile-img {
    width: 280px;
    margin-bottom: 0;
  }

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

@media (max-width: 576px) {
  .price-section {
    padding: 40px 0;
  }

  .price-wrapper {
    padding: 16px;
    border-radius: 18px;
  }

  .price-profile {
    flex-direction: column;
    text-align: center;
    gap: 4px;
  }

  .profile-img {
    width: 100%;
  }

  .price-content {
    padding: 20px;
  }

  .price-content h2 {
    font-size: 24px;
  }

  .price-content p {
    font-size: 16px;
    font-weight: 500;
  }
}

/*awards section*/
/* ===============================
   Section Background
================================= */

.award-section {
  width: 100%;
  padding: 80px 0 40px;
  background: url("../images/award-section-bg.webp") center/cover no-repeat;
  position: relative;
}

.award-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}


/* ===============================
   Desktop Layout
================================= */

.award-row {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 40px;
}

.row-top {
  flex-wrap: nowrap; /* 6 in one line */
}

.row-bottom {
  justify-content: center; /* center 3 logos */
}


/* ===============================
   Logo Styling
================================= */

.award-logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.award-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}


/* ===============================
   Tablet (= 992px)
================================= */

@media (max-width: 992px) {

  .award-row {
    flex-wrap: wrap;
    gap: 40px;
  }

  .row-top,
  .row-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    margin-bottom: 30px;
  }

  .award-logo {
    width: 90px;
    height: 90px;
  }
}


/* ===============================
   Mobile (= 600px)
================================= */

@media (max-width: 600px) {

  .award-section {
    padding: 50px 0;
  }

  .award-row {
    gap: 25px;
  }

  .award-logo {
    width: 65px;
    height: 65px;
  }
}
/*====================SDLC partner section===================*/
.sdlc-sec {
  width: 100%;
  padding: 100px 40px 60px;
  margin-bottom: 40px;
  background: url("../images/plain-bg-footer.webp");
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  position: relative;
}

@media (max-width: 600px) {
  .sdlc-sec {
    padding: 24px;
  }
}

.sdlc-wrap {
  max-width: 1600px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  gap: 40px;
}

.sdlc-bg-logo {
  position: absolute;
  top: 30px;
  left: 20px;
  z-index: 1;
}

.sdlc-bg-text {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(80px, 18vw, 320px);
  font-weight: 900;
  letter-spacing: 10px;
  color: rgba(255, 255, 255, 0.06);
  z-index: 0;
  white-space: nowrap;
  pointer-events: none;
  font-family: var(--font-family-secondary);
}

.sdlc-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0.8;
  z-index: 2;
}

.sdlc-logo img {
  width: 40px;
}

.sdlc-logo span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 12px;
  letter-spacing: 2px;
  color: #aaa;
}

.sdlc-main {
  flex: 1;
  z-index: 3;
}

.sdlc-main h3 {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  font-family: var(--font-family-secondary);
}

.sdlc-main h2 {
  font-size: 46px;
  font-weight: 800;
  margin: 6px 0 24px;
  color: #fff;
  font-family: var(--font-family-secondary);
}

.sdlc-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
  font-family: var(--font-family-secondary);
}

.sdlc-tab {
  font-size: 18px;
  color: #999;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 500;
}

.sdlc-tab.active {
  color: #fff;
  font-weight: 700;
}

.sdlc-dots {
  display: flex;
  gap: 10px;
  margin-bottom: 80px;
}

@media(max-width:900px) {
.sdlc-dots {
margin-bottom:24px;
}
}

.sdlc-dot {
  width: 28px;
  height: 4px;
  border-radius: 10px;
  background: #444;
  cursor: pointer;
  transition: all 0.35s ease;
}

.sdlc-dot.active {
  width: 52px;
  background: linear-gradient(90deg, #7c3aed, #2563eb);
  box-shadow: 0 0 10px rgba(124, 58, 237, 0.6);
}

.sdlc-meeting-btn {
  margin-top: 10px;
  padding: 10px 18px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, #000dff, #c115ec);
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-family-secondary);
}

.sdlc-meeting-btn img {
  width: 22px;
  height: auto;
}

.sdlc-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}

.sdlc-contact {
  display: flex;
  gap: 24px;
  font-size: 18px;
  font-family: var(--font-family-secondary);
  color: #fff;
  font-weight: 700;
}

.sdlc-contact a {
color:#fff;
text-decoration:none;
}
.sdlc-copy {
  text-align: center;
  margin-top: 20px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-family-secondary);
}

@media (max-width: 900px) {
  .sdlc-wrap {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0px;
  }

  .sdlc-logo {
    flex-direction: row;
  }

  .sdlc-logo img {
    transform: rotate(90deg);
  }

  .sdlc-logo span {
    writing-mode: horizontal-tb;
    transform: none;
  }

  .sdlc-tabs,
  .sdlc-dots {
    justify-content: center;
  }

  .sdlc-footer {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 520px) {
  .sdlc-main h2 {
    font-size: 28px;
  }

  .sdlc-tabs {
    flex-direction: column;
    gap: 10px;
  }
  .sdlc-contact {
    gap: 11px;
  }
}

/*==================popup form=============================*/
.ithub-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 99999;
  padding: 16px;
}

.ithub-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.ithub-popup-box {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 480px;
  padding: 28px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  animation: ithubSlideUp 0.4s ease;
  max-height: 90vh;
  overflow-y: auto;
}

@keyframes ithubSlideUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.ithub-popup-box h2 {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}

.ithub-popup-box p {
  text-align: center;
  margin-bottom: 16px;
  font-weight: 400;
}

.ithub-popup-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: #f3f4f6;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
}

.ithub-popup-group {
  margin-bottom: 14px;
}

.ithub-popup-group label {
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  display: block;
  margin-bottom: 4px;
}

.ithub-popup-group input,
.ithub-popup-group textarea {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
  outline: none;
}

.ithub-popup-group input:focus,
.ithub-popup-group textarea:focus {
  border-color: #6366f1;
}

.ithub-error {
  font-size: 12px;
  color: red;
  display: none;
  margin-top: 4px;
}

.ithub-submit-btn {
  width: 100%;
  border: none;
  border-radius: 999px;
  padding: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(90deg, #02aaea, #bc22fa);
  margin-top: 10px;
}

.ithub-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .ithub-popup-box {
    max-width: 420px;
    padding: 22px;
  }
}

@media (max-width: 480px) {
  .ithub-popup-box {
    width: 100%;
    max-width: 100%;
    border-radius: 16px 16px 0 0;
    padding: 20px;
    animation: ithubSlideUpMobile 0.35s ease;
  }

  @keyframes ithubSlideUpMobile {
    from {
      transform: translateY(100%);
    }
    to {
      transform: translateY(0);
    }
  }
}
