@font-face {
  font-family: "Helvetica";
  src: url("../fonts/Helvetica.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Helvetica";
  src: url("../fonts/Helvetica-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Helvetica";
  src: url("../fonts/Helvetica-Oblique.ttf") format("truetype");
  font-weight: normal;
  font-style: oblique;
}

@font-face {
  font-family: "Helvetica";
  src: url("../fonts/Helvetica-BoldOblique.ttf") format("truetype");
  font-weight: bold;
  font-style: oblique;
}

*,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Helvetica";
}

body {
  max-width: 100vw;
  overflow-x: hidden;
}

/* Scrollbar Track */
::-webkit-scrollbar {
  width: 6px;
  height: 12px;
}

/* Scrollbar Thumb (the draggable part) */
::-webkit-scrollbar-thumb {
  background-color: #2b005e;
  border-radius: 6px;
  border: 3px solid transparent;
  background-clip: content-box;
}

/* Scrollbar Track Background */
::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 6px;
}

/* Scrollbar on Hover */
::-webkit-scrollbar-thumb:hover {
  background-color: #1c003d;
}

/* Firefox-specific scrollbar styling */
* {
  scrollbar-width: thin;
  scrollbar-color: #2b005e #f1f1f1;
}

.krd-header-font {
  color: #1b1b1b;
  font-family: "Helvetica";
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 56px;
}
.krd-p-font {
  color: #1b1b1b;
  font-family: "Helvetica";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}

.krd-sub-heading {
  color: #3d3d3d;
  font-family: "Helvetica";
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
}

.krd-card {
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
}

.krd-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.08);
}

/* modals */
.modal-content {
  padding: 16px;
  padding-top: 6px;
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(0, 123, 255, 0.2);
}

.form-control:focus,
.form-select:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  border-color: #80bdff;
}

/* --- */

body {
  background: transparent;
}

.sticky-header {
  position: absolute;
  top: 20px;
  width: 100%;
  z-index: 1020;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform: translateY(-15px);
}

/* Sticky appearance (after scroll) */
.sticky-header.sticky {
  position: fixed;
  top: 0;
}

/* Entry animation */
.sticky-header.entering {
  transform: translateY(0);
  opacity: 1;
}

/* Exit animation */
.sticky-header.exiting {
  transform: translateY(-15px);
  opacity: 0;
}

body.header-is-sticky {
  padding-top: 56px;
}

/* Navbar */
.krd-nav {
  height: 89px;
  border-radius: 100px;
  background: #03091a;
}

.krd-logo {
  margin-left: 42px;
}

.nav-link {
  color: #ffffff80 !important;
  font-size: 14px;
}

.nav-link.active {
  color: #ffffff !important;
}

.nav-link:hover {
  color: #fff !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='white' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-toggler {
  border: none;
}

.offcanvas-start {
  background-color: #1e2951;
  height: 105vh;
  padding: 24px;
  position: fixed;
  top: 0;
}

.offcanvas .nav-link {
  color: #ffffff80;
}

.offcanvas .nav-link.active,
.offcanvas .nav-link:hover {
  color: #fff;
}

.request-demo-btn-li {
  /* max-width: 160px; */
}

.request-demo-btn {
  background-color: #a3ffbf !important;
  color: black !important;
  border-radius: 60px !important;
  border: none;
}
.request-demo-btn text {
  top: 3px;
}

/* request demo transition effect */

/* section1: hero-section */

.hero-section {
  position: relative;
}

.hero-section .container {
  display: flex;
  align-items: end;
  height: 100%;
}

.layer-pattern {
  position: absolute;
  top: 50px;
  background-image: url("../images/BG\ Pattern.svg");
  height: 90vh;
  width: 40%;
}

.layer-overview {
  position: absolute;
  left: 15%;
  width: 70%;
  top: 128px;
  /* opacity: 0.8; */
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-label p {
  color: #d5dbff;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.hero-moto {
  color: #d5dbff;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

/* --- */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: white;
}

/* Fullscreen background video */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Keep content above video */
.hero-section .container {
  position: relative;
  z-index: 1;
}

/* Optional overlay to improve text contrast */
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(106deg, #081236 33.4%, rgba(0, 0, 0, 0) 97.37%),
    rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(25px);
  z-index: 0.5;
}

.hero-container-row {
  margin-top: 64px;
}

/* Hide video on mobile for performance */
@media (max-width: 768px) {
  /* .hero-video {
    display: none;
  } */

  .hero-section {
    background-image: url("../images/hero-section-bg.jpg");
    background-size: cover;
    background-position: center;
  }
}

/* --- */
.hero-text {
  font-size: 38px;
  font-style: normal;
  font-weight: 800;
  /* line-height: 120px; */
  background: linear-gradient(90deg, #fffcfb 0%, #89dff8 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.custom-cta-hover {
  --width: 100%;
  --time: 0.7s;

  position: relative;
  display: inline-block;
  height: 60px;
  padding: 1em;

  color: white;
  background: #000;
  overflow: hidden;
  cursor: pointer;
  z-index: 5;
  width: 298px;
  border-radius: 40px;
  text-decoration: none;
}

.custom-cta-hover text {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  height: 60px;

  transition: color var(--time);
}

.custom-cta-hover text .custom-cta-hover-arrow {
  margin-top: 6px;
  margin-left: 20px;
}
.custom-cta-hover:hover text .custom-cta-hover-arrow path {
  stroke: black;
}

.custom-cta-hover:hover text {
  color: #222;
}

.custom-cta-hover span {
  position: absolute;
  display: block;
  content: "";
  z-index: 0;
  width: 0;
  height: 0;

  border-radius: 100%;
  background: #fff;

  transform: translate(-50%, -50%);
  transition: width var(--time), padding-top var(--time);
}

.custom-cta-hover:hover span {
  width: calc(var(--width) * 4.25);
  padding-top: calc(var(--width) * 4.25);
}

/* --- */

.custom-cta-hover-v2 {
  --width: 100%;
  --time: 0.7s;

  position: relative;
  display: inline-block;
  height: 60px;
  padding: 1em;

  color: white;
  background: #222;
  overflow: hidden;
  cursor: pointer;
  z-index: 5;
  width: 200px;
  border-radius: 40px;
  text-decoration: none;
  outline: none !important;
}

.custom-cta-hover-v2 text {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  height: 60px;

  transition: color var(--time);
}

.custom-cta-hover-v2 text .custom-cta-hover-arrow {
  margin-top: 6px;
  margin-left: 20px;
}
.custom-cta-hover-v2:hover text .custom-cta-hover-arrow path {
  stroke: black;
}

.custom-cta-hover-v2:hover text {
  color: #fff;
}

.custom-cta-hover-v2 span {
  position: absolute;
  display: block;
  content: "";
  z-index: 0;
  width: 0;
  height: 0;

  border-radius: 100%;
  background: #222;

  transform: translate(-50%, -50%);
  transition: width var(--time), padding-top var(--time);
}

.custom-cta-hover-v2:hover span {
  width: calc(var(--width) * 2.25);
  padding-top: calc(var(--width) * 2.25);
}

.discover-more-link{
  position: absolute;
  bottom: 50px;
}

.discover-more-link a{

  /* left: 50%;
  transform: translateX(-50%); */
  /* width: 100%; */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: white;
  font-size: 0.9em;
  /* transition: transform 0.2s ease-in-out; */
}

.discover-more-icon {
}

.discover-more-text {
  color: #fff;
  text-align: center;
  font-family: "Helvetica";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 1rem;
  opacity: 0.74;

}
/* bounce animation */
.bounce-custom {
    animation: bounce 2s ease infinite; 
}

@keyframes bounce {
    0% { transform: translateY(0); }
    20% { transform: translateY(0); } 
    40% { transform: translateY(-30%); }
    50% { transform: translateY(0); }
    60% { transform: translateY(-15%); } 
    70% { transform: translateY(0); }
    77% { transform: translateY(-8%); } 
    83% { transform: translateY(0); }
    88% { transform: translateY(-4%); } 
    92% { transform: translateY(0); }
    95% { transform: translateY(-2%); } 
    100% { transform: translateY(0); } 
}

/* section 2 : what-we-do-section */

.what-we-do-section {
  position: relative;
}

.what-we-do-section h6 {
  color: #1b1b1b;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
}
.pattern-overlay-what-we-do {
  position: absolute;
  right: 0px;
  top: -128px;
  z-index: -1;
  width: 30%;
}

.card-custom-section-1 {
  border: none;
}

.card-custom-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 20px;
}

.card-custom-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}
.what-we-do-section .col .card {
  border-radius: 20px;
  background-color: transparent;
}

.what-we-do-section .col .card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

/* .workflow-automation-card img, .tailored-solution-card img{
    height: 100%;
} */

/* section 3: ai-driven-future-section */
.ai-driven-future-section {
  background-color: #f8f9fa;
  padding: 80px 0;
  position: relative;
  background: linear-gradient(
    180deg,
    #118177 8.47%,
    rgba(255, 255, 255, 0) 100%
  );
}

.ai-driven-future-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 10% 20%,
      rgba(200, 200, 255, 0.2),
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 90%,
      rgba(255, 200, 255, 0.2),
      transparent 40%
    );
  z-index: 0;
  opacity: 0.7;
}

.ai-driven-future-section .container {
  position: relative;
  z-index: 1;
}

.pattern-overlay-ai-driven-future-section {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 35%;
}

.feature-card {
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease;
  transition: all ease 1s;
  cursor: pointer;
  border-radius: 22px;
  background: #f2f5ff;
  box-shadow: 0px 10px 60px 0px rgba(153, 153, 153, 0.07);
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card:hover,
.feature-card.highlighted {
  color: #fff;
  border-radius: 22px;
  background: #05564f;
  box-shadow: 0px 10px 60px 0px rgba(57, 131, 120, 0.25);
}

.feature-card-title {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feature-card .icon-wrapper {
  background-color: black;
  width: 64px;
  height: 64px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-card .icon-wrapper i {
  font-size: 1.5rem;
  color: #333;
}

.feature-card.highlighted .icon-wrapper i {
  color: #fff;
}

.feature-card h5 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-card p {
  flex-grow: 1;
  color: #3d3d3d;
  transition: all 0.7s ease;
}

.feature-card:hover p {
  color: #fff;
}
.feature-card.highlighted p {
  color: #fff;
}

.screenshot-placeholder {
  background-color: #f0f2f5;
  border-radius: 1.5rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
  font-size: 1.2rem;
  font-style: italic;
  border: 1px solid #dee2e6;
  position: relative;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px,
    rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
}

.screenshot-placeholder img {
  width: 100%;
  border-radius: 1.5rem;
}

.screenshot-placeholder button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 2rem;
  background-color: #fff;
  border-radius: 50%;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 30px 90px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* section 4: why-partner-section */
.why-partner-section {
  padding-top: 80px;
  padding-bottom: 40px;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.why-partner-section .top-squiggle-graphic img {
  position: absolute;
  top: 160px;
  width: 40%;
}

.why-partner-section .container {
  position: relative;
  z-index: 1;
}

.section-intro {
  max-width: 800px;
  margin: 0 auto 60px auto;
  text-align: center;
}

.section-intro h2 {
  margin-bottom: 1rem;
}

.strategic-partners-banner {
  border-radius: 1rem;
  /* padding: 2.5rem 2rem; */
  margin-top: 7.5rem;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}

.strategic-partners-banner-img {
  position: absolute;
  width: 100%;
  top: 25px;
  z-index: -1;
}

.strategic-partners-bg-overlay {
  position: absolute;
  width: 100%;
  z-index: -1;
}

.strategic-partners-header {
  display: flex;
  width: 50%;
  position: relative;
  padding: 0.5rem 1.75rem;
  top: 36px;
}

.strategic-partners-banner .text-content {
  flex: 1;
  min-width: 250px;
}

.strategic-partners-banner h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.strategic-partners-banner p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 0;
}

.strategic-partners-banner .graphic-content {
  display: flex;
  align-items: center;
}

/* @media (min-width: 992px) {
            .strategic-partners-banner .graphic-content {
                margin-top: 0;
            }
        } */

.strategic-partners-banner .profile-placeholder {
  width: 70px;
  height: 70px;
  position: relative;
  top: 0;
  right: -10px;
}

.strategic-partners-banner .play-button-placeholder {
  width: 70px;
  height: 70px;
}

.strategic-partners-banner .play-button-placeholder i {
  color: #fff;
  font-size: 1.8rem;
  margin-left: 5px;
}

.feature-grid {
  padding: 32px;
  padding-top: 100px;
}

.feature-grid .feature-item {
  background-color: #fff;
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #e9ecef;
}

.feature-grid .icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 0.6rem;
  background-color: #0c0c0c;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

/* .feature-grid .icon-wrapper i {
            font-size: 1.4rem;
            color: #4a00e0; 
        } */

.feature-grid h5 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.feature-grid p {
  color: #3d3d3d;
  line-height: 1.6;
}

.proven-impact-section {
  background: #11163c;
  color: #fff;
  border-radius: 100px;
  padding: 50px 30px;
  text-align: center;
  position: relative;
  margin: 2rem;
  overflow: hidden;
}

.proven-impact-section .layer-pattern-right {
  position: absolute;
  width: 45%;
  height: 100%;
  right: 0px;
  top: 0px;
}

.proven-impact-section .stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.proven-impact-section .stat-item {
  /* flex: 1; */
  min-width: 180px;
  padding: 1rem;
  margin: 1rem 0;
}

.proven-impact-section .stat-number {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.proven-impact-section .stat-description {
  font-size: 18px;
}

/* Responsive adjustments
        @media (max-width: 768px) {
            .strategic-partners-banner {
                flex-direction: column;
                align-items: flex-start;
            }
            .strategic-partners-banner .graphic-content {
                width: 100%;
                justify-content: center;
            }
            .proven-impact-section .stat-item {
                flex-basis: 100%;
            }
            .proven-impact-section .stat-number {
                font-size: 3rem;
            }
        }

 */

/* section 5: insights-section */

.insights-section {
  padding-bottom: 80px;
  background-color: #fff;
}

.insights-section .section-header {
  max-width: 700px;
  margin: 0 auto 50px auto;
  text-align: center;
}

.insight-card {
  background-color: #fff;
  /* transition: transform 0.2s ease, box-shadow 0.2s ease; */
  height: 100%;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  transition: transform 0.3s ease;
}

.insight-card .insight-card-image {
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-style: italic;
  position: relative;
  overflow: hidden;
  padding: 1rem;
}

.insight-card .insight-card-image img {
  width: 100%;
  position: relative;
  z-index: 1;
}

.insight-card .card-body {
  padding: 1rem;
  padding-top: 0;
}

.insight-card .card-title {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0.5rem;
  color: #1b1b1b;
}

.insight-card .card-text {
  color: #3d3d3d;
  font-family: "Helvetica";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}

/* section 6: ISO Certification Section */
.iso-certification-section {
  padding: 80px 0;
  width: 100%;
  background: radial-gradient(
      at 20% 70%,
      hsla(200, 50%, 85%, 1) 0px,
      transparent 50%
    ),
    radial-gradient(at 80% 30%, hsla(120, 30%, 80%, 1) 0px, transparent 50%),
    radial-gradient(at 50% 50%, hsla(240, 20%, 90%, 1) 0px, transparent 60%);
  background-color: #e6f2ff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 150px 0;
  min-height: 400px;
  position: relative;
  overflow: hidden;
  border-radius: 100px 100px 0px 0px;
  /* margin-bottom: 80px; */
  position: relative;
}

.layer-pattern-iso {
  position: absolute;
  top: 0;
  left: 38%;
  width: 40%;
  z-index: -2;
  opacity: 0.4;
}

.iso-certification-section p {
  color: #333;
  font-family: "Helvetica";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  margin-top: 32px;
}

.iso-graphic-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 300px;
}

.iso-graphic-wrapper img {
  max-width: 100%;
  height: auto;
  display: block;
  max-height: 588x;
  margin-left: 48px;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .iso-certification-section {
    padding: 50px 0;
  }
  .iso-graphic-wrapper {
    min-height: 250px;
    margin-top: 40px;
  }
}

@media (max-width: 767.98px) {
  .iso-certification-text {
    text-align: center;
    max-width: 100%;
  }
  .iso-graphic-wrapper {
    margin-bottom: 20px;
    order: -1;
  }
}

/* section 7: Technology Stack Section */
.tech-stack-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}


.tech-stack-background-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/Gradient\ bg.svg") lightgray 0px -92.832px / 100% 118.617%
    no-repeat;
  filter: blur(82px);
  -webkit-filter: blur(82px);
}

.tech-stack-section .container {
  position: relative;
  z-index: 1;
}

.tech-stack-section .section-description {
  color: #3d3d3d;
  text-align: center;
  font-family: "Helvetica";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
  margin-bottom: 32px;
}

/* Category Circle Navigation */
.category-wrapper-new {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  user-select: none;
  position: relative;
}

.category-circle-new {
  background-color: white;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08); */
  border: 1px solid #000;
  transition: all 0.3s ease-in-out;
}

.category-circle-new:hover {
  transform: translateY(-5px);
  /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12); */
  /* border-color: #a7d9b7; */
}

/* Category Icons - These are directly embedded SVGs */
.category-icon-new {
  width: 50px;
  height: 50px;
  color: #555;
  transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}

.category-circle-new:hover .category-icon-new {
  transform: scale(1.1);
  color: #34d399;
}

.category-label-new {
  text-align: center;
  font-family: "Helvetica";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 56px;
  text-transform: uppercase;
}

/* Active State for Categories */
.category-wrapper-new.active .category-circle-new {
  border-color: #34d399;
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 8px 20px rgba(52, 211, 153, 0.2);
}

.category-wrapper-new.active .category-circle-new svg path {
  fill: #34d399;
}

.category-wrapper-new.active .category-icon-new {
  color: #34d399;
}

.category-wrapper-new.active .category-label-new {
  background: linear-gradient(90deg, #37634e 15.6%, #6fc99f 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.down-chevron-new {
  color: #34d399;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.category-wrapper-new.active .down-chevron-new {
  opacity: 1;
}

/* Category Grid container */
.categories-grid-new {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
}

/* Tech Logos Display Area */
.tech-grid-new {
  height: 387px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
  border-radius: 100px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 1.25%, #fff 100%);
  margin-top: -100px;
  border: none;
}

@keyframes fadeInLogos {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tech-logo-card-new {
  animation: fadeInLogos 0.4s ease-out forwards;
  background-color: rgba(30, 34, 53, 0.06);
  border-radius: 0.75rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 100px;
  height: 100px;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
  transition: transform 0.2s ease;
}

.tech-logo-card-new:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tech-logo-new {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.tech-logo-text-new {
  color: #333;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  /* Medium devices and down */
  .tech-stack-section {
    padding: 50px 0;
    border-radius: 1.5rem;
  }
  .tech-stack-section .section-title {
    font-size: 2.2rem;
  }
  .tech-stack-section .section-description {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }
  .category-circle-new {
    width: 90px;
    height: 90px;
  }
  .category-icon-new {
    width: 40px;
    height: 40px;
  }
  .category-label-new {
    font-size: 0.85rem;
  }
  .tech-grid-new {
    padding: 1rem;
    gap: 1rem;
  }
  .tech-logo-card-new {
    width: 90px;
    height: 90px;
  }
  .tech-logo-new {
    width: 35px;
    height: 35px;
  }
  .categories-grid-new {
    gap: 1rem;
    margin-bottom: 2.5rem;
  }
  .down-chevron-new {
    bottom: -15px;
  }
}

@media (max-width: 767.98px) {
  /* Small devices and down */
  .categories-grid-new {
    flex-wrap: wrap;
    padding: 0 1rem;
  }
  .category-wrapper-new {
    margin-bottom: 2.5rem;
    flex-basis: auto;
    max-width: 150px;
  }
}

@media (max-width: 575.98px) {
  /* Extra small devices and down */
  .tech-stack-section .section-title {
    font-size: 2rem;
  }
  .category-circle-new {
    width: 80px;
    height: 80px;
  }
  .category-icon-new {
    width: 35px;
    height: 35px;
  }
  .category-label-new {
    font-size: 0.75rem;
  }
  .tech-logo-card-new {
    width: 80px;
    height: 80px;
  }
  .tech-logo-new {
    width: 30px;
    height: 30px;
  }
  .categories-grid-new {
    gap: 0.75rem;
  }
}

/* section 8: ready-to-build-section */
.ready-to-build-section {
  text-align: center;
  background-color: #fff;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}

.ready-to-build-section .container {
  position: relative;
  z-index: 1;
}

.lets-talk-wrapper {
  background-image: url("../images/ai-bg-cta.svg");
  display: flex;
  justify-content: center;
  padding: 64px 0px;
}

.lets-talk-wrapper .btn-outline-dark-custom {
  border: 1px solid #333;
  color: #333;
  background-color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 20px;
  line-height: 22px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  display: flex;
  gap: 2rem;
  align-items: center;
  width: 250px;
}

.lets-talk-wrapper .btn-outline-dark-custom text {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.lets-talk-wrapper .btn-outline-dark-custom svg {
  width: 16px;
}
.lets-talk-wrapper .btn-outline-dark-custom .btn-outline-dark-custom-svg path {
  stroke: #000;
}

.lets-talk-wrapper .btn-outline-dark-custom:hover {
  background-color: #333;
  color: #fff;
}
.lets-talk-wrapper
  .btn-outline-dark-custom:hover
  .btn-outline-dark-custom-svg
  path {
  stroke: #fff;
}

/* demo */
#create-ticket-btn {
  width: 100%;
  margin-top: 16px;
}
#create-ticket-btn:hover,
#create-ticket-btn:active {
  color: black !important;
  background-color: #fff !important;
}

/* custom-cta-hover-v3 */

.custom-cta-hover-v3 {
  --width: 100%;
  --time: 0.7s;

  position: relative;
  display: inline-block;
  height: 60px;
  padding: 1em;

  color: white;
  background: #222;
  overflow: hidden;
  cursor: pointer;
  z-index: 5;
  width: 298px;
  border-radius: 40px;
  text-decoration: none;
}

.custom-cta-hover-v3 text {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  height: 60px;

  transition: color var(--time);
}

.custom-cta-hover-v3 text .custom-cta-hover-arrow {
  margin-top: 6px;
  margin-left: 20px;
}
.custom-cta-hover-v3:hover text .custom-cta-hover-arrow path {
  stroke: black;
}

.custom-cta-hover-v3:hover text {
  color: #222;
}

.custom-cta-hover-v3 span {
  position: absolute;
  display: block;
  content: "";
  z-index: 0;
  width: 0;
  height: 0;

  border-radius: 100%;
  background: #fff;

  transform: translate(-50%, -50%);
  transition: width var(--time), padding-top var(--time);
}

.custom-cta-hover-v3:hover span {
  width: calc(var(--width) * 4.5);
  padding-top: calc(var(--width) * 4.5);
}
/* Footer Section */
.app-footer {
  background-color: #11163c;
  color: #fff;
  padding: 80px 0 30px 0;
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.app-footer .footer-col-title {
  margin-bottom: 1.5rem;
  color: #fff;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
}

.app-footer .subscribe-form .form-control {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
}

.app-footer .subscribe-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.app-footer .subscribe-form.input-group {
  position: relative;
}

.app-footer .subscribe-form.input-group #email {
  border-radius: 0.5rem !important;
}

.app-footer .subscribe-form .input-group-text {
  background-color: #333;
  border: 1px solid #333;
  color: #fff;
  border-radius: 12px !important;
  cursor: pointer;
  padding: 0.75rem 0.75rem;
  position: absolute;
  right: 4px;
  top: 4px;
  transition: all 0.3s ease;
}

.app-footer .subscribe-form .input-group-text:hover {
  background-color: #fff;
}

.app-footer .subscribe-form .input-group-text:hover svg path {
  stroke: #000;
}

.app-footer .subscribe-form .input-group-text svg {
  padding-left: 4px;
}

.app-footer .footer-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.app-footer .footer-link-list li {
  margin-bottom: 0.75rem;
}

.app-footer .footer-link-list a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
  cursor: pointer;
}

/* hover effect on footer links */
.footer-link-list a {
  position: relative;
  padding-right: 64px;
  text-decoration: none;
  display: inline;
}

.footer-link-list a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 90%;
  transform: translateY(-50%) translateX(-5px);
  width: 48px;
  height: 48px;
  background-image: url("../images/footer-link-hover.svg");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-link-list a:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.app-footer .footer-link-list a:hover {
  color: #fff;
}

.app-footer .footer-link-list a i.bi-arrow-right {
  font-size: 0.8rem;
  margin-left: 0.5rem;
  transition: margin-left 0.2s ease;
}

.app-footer .footer-link-list a:hover i.bi-arrow-right {
  margin-left: 0.75rem;
}

.app-footer .contact-info p,
.app-footer .call-us-info p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

.app-footer .call-us-info .icon-text {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.app-footer .call-us-info .icon-text i {
  font-size: 1.5rem;
  color: #28a745;
}

.app-footer .call-us-info .icon-text a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 1.1rem;
}

.app-footer .copyright {
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* media queris */
@media (min-width: 576px) {
  .hero-text {
    font-size: 48px;
  }
  .layer-overview {
    position: absolute;
    right: 16px;
    width: 42%;
    bottom: -30px;
    top: unset;
    left: unset;
    /* opacity: 0.8; */
  }
  .hero-section .container {
    display: block;
  }
  .hero-container-row {
    margin-top: 0;
  }
  .hero-label p {
    font-size: 36px;
  }
}
@media (min-width: 768px) {
}
@media (min-width: 992px) {
  .hero-text {
    font-size: 56px;
  }
}
@media (min-width: 1200px) {
  .hero-text {
    font-size: 88px;
  }
  .nav-link {
    font-size: 1rem;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1450px;
  }
  .hero-text {
    line-height: 120px;
  }
}
@media (min-width: 1600px) {
  .hero-container-row {
    margin-left: -36px;
  }
  .container {
    max-width: 1450px;
  }
}

/* Responsive adjustments for footer */
@media (max-width: 991.98px) {
  .app-footer {
    border-top-left-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
    padding-top: 50px;
    margin-top: -30px;
  }

  .app-footer .footer-col-title {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
  }
}

@media (max-width: 767.98px) {
  .app-footer .footer-col-title {
    /* text-align: center; */
  }

  .app-footer .subscribe-form {
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }

  .app-footer .footer-link-list,
  .app-footer .contact-info,
  .app-footer .call-us-info {
    text-align: center;
  }

  .app-footer .footer-link-list a {
    justify-content: center;
  }
}

/* animations */

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  20%,
  60% {
    transform: translateX(-6px);
  }
  40%,
  80% {
    transform: translateX(6px);
  }
}

.aos-shake.aos-animate {
  animation: shake 0.6s ease-in-out;
}

@keyframes orbit {
  0% {
    transform: rotate(0deg) translateX(30px) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translateX(30px) rotate(-360deg);
  }
}

.aos-orbit.aos-animate {
  animation: orbit 3s linear infinite;
}
