.section {
  display: none;
}

.section.active {
  display: block;
}
/* Pulsating ripple circles */
.pulse-ring {
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(0, 170, 255, 0.4);
  animation: pulseOut 3s ease-out infinite;
}
.ring1 {
  width: 70px;
  height: 70px;
}
.ring2 {
  width: 70px;
  height: 70px;
  animation-delay: 1s;
}
.ring3 {
  width: 70px;
  height: 70px;
  animation-delay: 2s;
}
@keyframes rotate360 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes pulseOut {
  0% {
    transform: translate(-50%, -50%) scale(0.6);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.2);
    opacity: 0;
  }
}
/* Pulsating ripple circles animation*/
/* Base */
/* #home {
  min-height: 100vh;
  display: flex;
  align-items: center;
} */
#home {
  height: 100vh;
  align-items: center;
}

/* show ONLY when active */
#home.active {
  display: flex;
}

.icon11 {
  width: 20px;
  filter: brightness(0) saturate(100%) invert(27%) sepia(90%) saturate(7000%)
    hue-rotate(315deg) brightness(95%) contrast(105%);
}
/* Desktop & Tablets — KEEP LEFT / RIGHT */
@media (max-width: 1024px) {
  #home .section1-container {
    display: flex;
    flex-direction: row; /* IMPORTANT */
    justify-content: space-between;
    align-items: center;
    padding: 0 30px; /* 👈 30px edge gap */
    gap: 40px;
  }
  #home .main_container {
    max-width: 55%;
  }
  #home .blob-section {
    max-width: 45%;
    display: flex;
    justify-content: flex-end;
  }
  #home .blob {
    /* position: relative; */
    left: 35px;
    top: auto;
    width: 360px;
    height: 360px;
  }
}

/* Mobile — STACK */
@media (max-width: 768px) {
  #home .section1-container {
    flex-direction: column;
    padding: 40px 20px;
    gap: 40px;
  }

  #home .main_container,
  #home .blob-section {
    max-width: 100%;
    height: 380px;
  }

  #home .heading_section p {
    font-size: 26px;
    line-height: 1.3;
  }

  #home .para_section p {
    font-size: 15px;
    line-height: 1.6;
  }

  #home .buttons_container {
    flex-direction: column;
    width: 100%;
  }

  #home .btn_primary,
  #home .btn_secondary {
    width: 100%;
    justify-content: center;
  }

  #home .sub_container4 {
    flex-direction: column;
    gap: 20px;
  }

  #home .sub42,
  #home .sub43 {
    margin-left: 0;
  }

  #home .blob {
    width: 280px;
    height: 280px;
  }

  #home .blob-img {
    bottom: -20%;
    right: -50%;
  }
}

/* Small phones */
@media (max-width: 480px) {
  #home .heading_section p {
    font-size: 22px;
  }

  #home .para_section p {
    font-size: 14px;
  }

  #home .blob {
    width: 240px;
    height: 240px;
  }
}
/* 
main {
  margin-top: 1px;
}
.page_content {
  padding-top: 10px;
} */
.section h1,
.section h2 {
  color: var(--white);
  margin-bottom: 15px;
}

.section p {
  max-width: 700px;
  margin: 0 auto;
}
.section1-container {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* 👈 not center */
  gap: 80px; /* 👈 controls distance */
  max-width: 1400px;
  margin: 0 auto;
}

/* home page wobble animation css */
.blob-section {
  width: 520px; /* 👈 fixed visual column */
  display: flex;
  justify-content: center;
  align-items: center;
  position:relative;
}
.floating-card999 {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 2;
}

/* Top-right card */
.card-innovative999{
  top: 12%;
  right: -6%;
}

/* Bottom-left diagonal card */
.card-research999{
  bottom: 18%;
  left: -6%;
}
.card-icon999 {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;

  /* 🔥 Gradient background */
  background: linear-gradient(
    90deg,
    var(--primary-blue),
    var(--primary-pink)
  );

  border-radius: 12px;
  color: #ffffff;
  flex-shrink: 0;

  /* subtle depth */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}
.card-icon999 img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}
.card-icon999 img {
  filter: brightness(0) invert(1);
}



/* section {
  position: relative;
  width: 100vw;
  height: 100vh;
} */
section {
  position: relative;
  width: 100%;
  margin-top: 50px;
}

.blobs {
  /* position: absolute; */
  inset: 0;
  filter: url("#goo");
}

/* squeeze stays the same */
@keyframes blob-squeeze {
  0% {
    border-radius: 62% 38% 55% 45% / 50% 65% 35% 50%;
  }

  25% {
    border-radius: 50% 50% 65% 35% / 45% 65% 35% 55%;
  }

  50% {
    border-radius: 65% 35% 50% 50% / 55% 45% 60% 40%;
  }

  75% {
    border-radius: 40% 60% 45% 55% / 65% 35% 55% 45%;
  }

  100% {
    border-radius: 62% 38% 55% 45% / 50% 65% 35% 50%;
  }
}

/* subtle tilt: ±5° */
@keyframes blob-tilt {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  25% {
    transform: translate(-50%, -50%) rotate(5deg);
  }

  50% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  75% {
    transform: translate(-50%, -50%) rotate(-5deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}
.blob {
  position: relative;
  left: 290px;
  top: 220px;
  transform: none;

  width: 450px;
  height: 450px;
  background: linear-gradient(90deg, #9c97be 0%, #d095cb 100%);
  border-radius: 62% 38% 55% 45% / 50% 65% 35% 50%;
  overflow: hidden;

  animation:
    blob-squeeze 8s ease-in-out infinite,
    blob-tilt 10.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.blob::after {
  content: "";
  position: absolute;
  inset: 0;

  pointer-events: none;
}
/* image inside bottom-right */
.blob-img {
  position: absolute;
  bottom: -25%;
  right: -70%;
  width: 143%;
  height: auto;
  object-fit: contain;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 1),
    rgba(0, 0, 0, 0)
  );
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.931),
    rgba(0, 0, 0, 0.585)
  );
}
/* end of wobble section css */

.sub_container1 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 35px;
  width: fit-content;
  padding: 10px 15px;
  border-radius: 20px;
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--primary-blue) 15%, transparent),
    color-mix(in srgb, var(--primary-pink) 15%, transparent)
  );
  /* Glass effect */
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);

  /* Subtle glossy border */
  border: 1px solid color-mix(in srgb, rgb(145, 158, 219) 25%, transparent);

  /* Soft depth */
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.35),
    0 8px 24px rgba(0, 0, 0, 0.08);
}
.main_container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 520px; /* 👈 fixed readable column */
}

.buttons_container {
  display: flex;
  gap: 15px;
}
.buttons_container a {
  text-decoration: none;
}
.btn_primary {
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-pink));
  color: var(--white);
  padding: 6px 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn_icon {
  filter: brightness(0) invert(1);
  width: 14px;
  transition: transform 0.3s ease;
  color: #fff;
}
.btn_primary:hover .btn_icon {
  transform: translateX(4px);
}
.btn_secondary {
  background: var(--bg-darkest);
  color: white;
  padding: 5px 14px;
  font-size: 14px;
  border: 2px solid var(--btn-grey);
  border-radius: 12px;
  /* needed for gradient border */
  background-clip: padding-box;
  transition:
    border 0.3s ease,
    background 0.3s ease;
}
.btn_secondary:hover {
  border: 2px solid transparent;
  background:
    linear-gradient(var(--bg-darkest), var(--bg-darkest)) padding-box,
    linear-gradient(
        90deg,
        color-mix(in srgb, var(--primary-blue) 60%, transparent),
        color-mix(in srgb, var(--primary-pink) 60%, transparent)
      )
      border-box;
}
.line {
  margin-top: 40px;
  height: 2px;
  background: var(--hr-line);
  width: 110%;
}
.sub_container2 {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  text-align: left !important;
}
.sub_container4 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 575px;
  margin-top: 25px;
}
.sub41 {
  text-align: left;
}
.sub42,
.sub43 {
  text-align: left;

  margin-left: 130px;
}
.su41,
.su42,
.su43 {
  color: linear-gradient(90deg, var(--primary-blue), var(--primary-pink));
}
/* partial confirmation of home css end */
.card_main {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 30px;
}
.cd {
  background-color: #1a1a1a;
  border-radius: 10px;
  width: 500px;
  height: 350px;
}
.os-container {
  display: flex;
  justify-content: center; /* centers horizontally */
  width: 100%; /* full width so left/right space is equal */
  margin-top: 20px; /* optional */
}

/* Transparent gradient pill around text */
.os {
  display: inline-block;

  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--primary-blue) 30%, transparent),
    color-mix(in srgb, var(--primary-pink) 30%, transparent)
  );
  width: auto;
  color: white;
  padding: 2px 20px;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 600;
}

.bi1 {
  background-color: rgb(81, 81, 221);
  border-radius: 10px;
  padding: 20px;
  width: auto;
  height: auto;
  margin-left: -80%;
  margin-top: 2%;
  margin-bottom: 2%;
  fill: white;
}
.devp p {
  text-align: start;
  margin-left: 25px;
}
.bi2 {
  background-color: rgb(81, 81, 221);
  border-radius: 10px;
  padding: 20px;
  width: auto;
  height: auto;
  margin-left: -80%;
  margin-top: 2%;
  margin-bottom: 2%;
  fill: white;
}
.bi3 {
  background-color: rgb(191, 121, 207);
  border-radius: 10px;
  padding: 20px;
  width: auto;
  height: auto;
  margin-left: -80%;
  margin-top: 2%;
  margin-bottom: 2%;
}
.bi4 {
  background-color: rgb(210, 23, 132);
  border-radius: 10px;
  padding: 20px;
  width: auto;
  height: auto;
  margin-left: -80%;
  margin-top: 2%;
  margin-bottom: 2%;
  fill: white;
}
.bi5 {
  background-color: rgb(216, 17, 160);
  border-radius: 10px;
  padding: 20px;
  width: auto;
  height: auto;
  margin-left: -80%;
  margin-top: 2%;
  margin-bottom: 2%;
  fill: white;
}
.bi6 {
  background-color: rgb(216, 17, 160);
  border-radius: 10px;
  padding: 20px;
  width: auto;
  height: auto;
  margin-left: -80%;
  margin-top: 2%;
  margin-bottom: 2%;
  fill: white;
}
.res {
  margin-top: 35px;
  margin-bottom: 35px;
}
.devp {
  margin-bottom: 25px;
}
.gradient-line {
  height: 5px;
  width: 100%;
  background: linear-gradient(90deg, #183897, #ba2f87);
  background-size: 200% 100%;
  animation: slide 3s linear infinite;
}
@keyframes slide {
  from {
    background-position: 0% 0%;
  }
  to {
    background-position: 100% 0%;
  }
}

.p1 {
  font-weight: bold;
  line-height: 50px;
}
.p2 {
  font-weight: lighter;
}
.vertical_spacer_large {
  height: 100px;
}
.vertical_spacer_medium {
  height: 50px;
}
.vertical_spacer_small {
  height: 20px;
}
.button11 {
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-pink));
  border-radius: 10%;
}
.bt3 {
  display: inline-block;
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--primary-blue) 30%, transparent),
    color-mix(in srgb, var(--primary-pink) 30%, transparent)
  );
  width: auto;
  color: white;
  padding: 2px 20px;
  border-radius: 10px;
}
.twm p {
  font-size: medium;
  font-weight: 400;
}
.t1 {
  display: flex;
}
/* add on css */
:root {
  --primary-color: #8b5cf6;
  --secondary-color: #ec4899;
  --dark-bg: #0a0a0a;
  --card-bg: #1a1a1a;
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --border-color: #2a2a2a;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
    Cantarell, sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  padding-top: 8px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
}

.cta-btn {
  padding: 0.7rem 1.8rem;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border: none;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

/* Services Section */
.services-section {
  min-height: 100vh;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    border-color 0.3s;
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.card_main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.service-card:hover {
  /* transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2); */
  border-color: #183897;
}
.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s;
}
.service-icon:hover {
  transform: scale(1.1) rotate(5deg);
}

.service-icon i {
  font-size: 1.8rem;
  color: white;
}
.service-card h3 {
  font-size: 1rem;
  margin-bottom: 1.2rem;
  background: linear-gradient(135deg, #ffffff, #a0a0a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: left;
}
.cta-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 4rem;
}
.home-only {
  display: none;
}
code .about-section .tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.about-telescope-icon {
  width: 40px;
  height: auto;
  filter: brightness(0) invert(1);
}
.ts1 {
  display: inline-block;
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--primary-blue) 30%, transparent),
    color-mix(in srgb, var(--primary-pink) 30%, transparent)
  );
  width: auto;
  color: white;
  padding: 2px 20px;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 600;
}
.tech-tag {
  padding: 0.4rem 0.9rem;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: all 0.3s;
  line-height: 40px;
  justify-content: flex-start;
}

.tech-tag:hover {
  background: rgba(141, 13, 79, 0.2);
  border-color: var(--primary-blue);
  color: var(--primary-color);
  transform: scale(1.05);
}
/* Technology Arsenal Section */
.tech-arsenal-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--dark-bg) 0%, #0f0f0f 100%);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  font-size: 100%;
}

.tech-carousel {
  margin: 2rem 0;
  position: relative;
}

.tech-carousel::before,
.tech-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.tech-carousel::before {
  left: 0;
  background: linear-gradient(to right, var(--dark-bg), transparent);
}

.tech-carousel::after {
  right: 0;
  background: linear-gradient(to left, var(--dark-bg), transparent);
}

.tech-track {
  display: flex;
  gap: 1rem;
  animation: scroll 30s linear infinite;
  width: max-content;
}

.tech-track-reverse {
  animation: scrollReverse 30s linear infinite;
  width: max-content;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollReverse {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.tech-track:hover {
  animation-play-state: paused;
}

.tech-badge {
  padding: 0.7rem 1.5rem;
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--primary-blue) 15%, transparent),
    color-mix(in srgb, var(--primary-pink) 15%, transparent)
  );
  border: 1px solid var(--border-color);
  border-radius: 10px;
  font-size: 0.95rem;
  color: var(--text-primary);
  white-space: nowrap;
  transition: all 0.3s;
  cursor: pointer;
}

.tech-badge:hover {
  background: rgba(102, 7, 24, 0.1);
  border-color: var(--primary-blue);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
}
.tech-track-reverse {
  border-color: var(--primary-pink);
  color: var(--primary-color);
  transform: scale(1.05);
}
.tech-track-reverse .tech-badge:hover {
  border-color: var(--primary-pink);
}

/* Scroll to Top Button */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-pink));
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 1000;
  box-shadow: 0 5px 20px rgba(139, 92, 246, 0.4);
  z-index: 1100;
}
.scroll-top {
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}
.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.6);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2rem;
  }

  .service-card {
    padding: 1.5rem;
  }
}

/* Animations for staggered entrance */
.service-card:nth-child(1) {
  animation-delay: 0.1s;
}

.service-card:nth-child(2) {
  animation-delay: 0.2s;
}

.service-card:nth-child(3) {
  animation-delay: 0.3s;
}

.service-card:nth-child(4) {
  animation-delay: 0.4s;
}

.service-card:nth-child(5) {
  animation-delay: 0.5s;
}

.service-card:nth-child(6) {
  animation-delay: 0.6s;
}
/* About Section */
.about-container-1 {
  margin-left: 160px;
  margin-right: 160px;
}
/* Scroll to top button */
.scroll-top-btn-about {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-pink));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.scroll-top-btn-about:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.6);
}
.about-section {
  padding: 3rem 0 2rem;
  background: var(--dark-bg);
}

/* Badge Wrapper - Centers the badge */
.badge-wrapper {
  text-align: center;
  margin-bottom: 2rem;
}

.section-badge {
  margin-top: 50px;
  display: inline-block;
  padding: 0.7rem 1.5rem;
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--primary-blue) 30%, transparent),
    color-mix(in srgb, var(--primary-pink) 30%, transparent)
  );
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  animation: fadeIn 0.6s ease-out;
}

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

.section-title {
  font-size: 1.5rem;
  font-weight: 300;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--white);
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
  animation: fadeIn 1s ease-out;
}

/* Mission Content */
.mission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 4rem;
  margin-bottom: 50px;
  /* margin-left: 150px;
  margin-right: 150px; */
}

.mission-text {
  text-align: left;
  animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.mission-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.mission-paragraph {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Mission Image */
.mission-image {
  position: relative;
  animation: fadeInRight 1s ease-out;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.mission-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s;
}

.mission-image:hover img {
  transform: scale(1.02);
}

.image-badge {
  position: absolute;
  bottom: -40px;
  left: -60px;
  padding: 0.5rem 2rem;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.badge-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.3rem;
}

.badge-text {
  font-size: 1rem;
  color: white;
  opacity: 0.9;
}

/* Values Section */
.values-section {
  padding: 6rem 0;
  background: var(--dark-bg);
}

.values-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4rem;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
  /* margin-left: 150px;
  margin-right: 150px; */
}

/* Value Item - NO CARDS, just content */
.value-item {
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

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

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  transition: transform 0.3s;
}

.value-item:hover .value-icon {
  transform: scale(1.1) rotate(5deg);
}

.value-name {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.value-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Stats Banner */
.stats-banner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 3rem;
  background: linear-gradient(135deg, #4c1d95 0%, #7e22ce 50%, #db2777 100%);
  border-radius: 20px;
  margin-top: 4rem;
  /* box-shadow: 0 20px 60px rgba(139, 92, 246, 0.4); */
  animation: fadeInUp 1.2s ease-out;
  /* margin-left: 100px;
  margin-right: 100px; */
}

.stat-box {
  text-align: center;
  padding: 0 1rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Staggered Animations */
.value-item:nth-child(1) {
  animation-delay: 0.1s;
}

.value-item:nth-child(2) {
  animation-delay: 0.2s;
}

.value-item:nth-child(3) {
  animation-delay: 0.3s;
}

.value-item:nth-child(4) {
  animation-delay: 0.4s;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .mission-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

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

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .mission-title {
    font-size: 1.5rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .stats-banner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem;
  }

  .image-badge {
    bottom: 15px;
    left: 15px;
    padding: 1rem 1.5rem;
  }

  .badge-number {
    font-size: 2rem;
  }

  .badge-text {
    font-size: 0.9rem;
  }
}
/* projects section */
:root {
  --primary-color: #8b5cf6;
  --secondary-color: #ec4899;
  --dark-bg: #0a0a0a;
  --card-bg: #1a1a1a;
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --border-color: #2a2a2a;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
    Cantarell, sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.6;
}

.container112 {
  overflow: hidden;
  max-width: 1400px;
  margin: 0 auto;
}
/* new service section */
.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

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

.services-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--primary-blue) 30%, transparent),
    color-mix(in srgb, var(--primary-pink) 30%, transparent)
  );
  border: 1px solid #4a5568;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 20px;
}

.services-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 12px;
}

.services-subtitle {
  color: #a0aec0;
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.service-card {
  background-color: #1a1a1a;
  border: 1px solid #2d2d2d;
  border-radius: 12px;
  padding: 32px 24px 40px 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* .service-card::after {
  content: "";
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  height: 2px;
  background: var(--gradient-line);
}
.service-card.line-visible::after {
  animation: revealLine 1.2s ease forwards;
}
@keyframes revealLine {
  to {
    width: calc(100% - 48px);
  }
} */
.service-card::after {
  content: "";
  position: absolute;
  bottom: 24px;
  left: 24px;
  height: 3px;
  width: 0;
  background: var(--gradient-line);
}
.services-grid .service-card:nth-child(-n + 3) {
  --gradient-line: linear-gradient(90deg, #0f245f, #183897, #4f6fd6);
}
.services-grid .service-card:nth-child(n + 4) {
  --gradient-line: linear-gradient(90deg, #7a1f56, #ba2f87, #f07abf);
}
.service-card.force-test::after {
  animation: testLine 1s linear forwards;
}

@keyframes testLine {
  to {
    width: calc(100% - 48px);
  }
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  background-color: var(--icon-bg);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Icon image styling */
.icon-image {
  width: 24px;
  height: 24px;
  object-fit: contain;
  /* Make white/light colored icons visible on colored background */
  filter: brightness(0) invert(1);
}

/* .service-card:hover .service-icon {
  transform: rotate(10deg) scale(1.1);
} */

.service-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.service-description {
  color: #a0aec0;
  font-size: 14px;
  line-height: 1.6;
  text-align: left;
}

/* Service 1 - Research & Development (Blue) */
.serv-1 {
  --gradient-line: linear-gradient(90deg, #1e3a8a, #3b82f6, #60a5fa);
  --icon-bg: #1e40af;
  --hover-color: #3b82f6;
}

.serv-1:hover .service-title {
  color: #3b82f6;
}

/* Service 2 - Custom Software (Blue/Purple) */
.serv-2 {
  --gradient-line: linear-gradient(90deg, #4c1d95, #7c3aed, #a78bfa);
  --icon-bg: #5b21b6;
  --hover-color: #7c3aed;
}

.serv-2:hover .service-title {
  color: #7c3aed;
}

/* Service 3 - Data Solutions (Purple) */
.serv-3 {
  --gradient-line: linear-gradient(90deg, #6b21a8, #a855f7, #c084fc);
  --icon-bg: #7e22ce;
  --hover-color: #a855f7;
}

.serv-3:hover .service-title {
  color: #a855f7;
}

/* Service 4 - AI & Machine Learning (Pink) */
.serv-4 {
  --gradient-line: linear-gradient(90deg, #9f1239, #e11d48, #fb7185);
  --icon-bg: #be123c;
  --hover-color: #e11d48;
}

.serv-4:hover .service-title {
  color: #e11d48;
}

/* Service 5 - Educational Platforms (Pink) */
.serv-5 {
  --gradient-line: linear-gradient(90deg, #be185d, #ec4899, #f9a8d4);
  --icon-bg: #db2777;
  --hover-color: #ec4899;
}

.serv-5:hover .service-title {
  color: #ec4899;
}

/* Service 6 - Consulting Services (Pink/Red) */
.serv-6 {
  --gradient-line: linear-gradient(90deg, #be123c, #f43f5e, #fb7185);
  --icon-bg: #e11d48;
  --hover-color: #f43f5e;
}

.serv-6:hover .service-title {
  color: #f43f5e;
}

.services-cta {
  text-align: center;
  /* padding-bottom: 250px; */
}

.cta-text {
  color: #a0aec0;
  font-size: 16px;
  margin-bottom: 100px;
}
.dvbutton22 {
  margin-top: 50px;
  margin-bottom: 50px;
}
.cta-button22 {
  padding: 1rem 2.5rem;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}
.cta-button22:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(139, 92, 246, 0.4);
}

.cta-button {
  margin-top: 30px;
  display: inline-block;
  padding: 12px 32px;
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-pink));
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
/* service section ended  */
/* new tech section started */
.tech1 {
  min-height: 100vh;
  padding: 0px 0px;
  background: linear-gradient(180deg, #000000 0%, #0a0a0a 50%, #000000 100%);
}

.tech2 {
  max-width: 1400px;
  margin: 0 auto;
}

/* Header */
.tech3 {
  text-align: center;
  margin-bottom: 60px;
}

.tech4 {
  margin-top: 30px;
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--primary-blue) 30%, transparent),
    color-mix(in srgb, var(--primary-pink) 30%, transparent)
  );
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.tech5 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  background: linear-gradient(to right, #ffffff, #a0a0a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tech6 {
  font-size: 18px;
  color: #9ca3af;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Grid */
.tech7 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  padding-bottom: 20px;
}

/* Card */
.tech8 {
  background: rgba(20, 20, 20, 0.6);
  border: 0.1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.5s;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.tech8:hover {
  transform: scale(1.03);
  border-color: #a1b3f0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}
.tech8:hover::before {
  opacity: 1;
}
/* background image styling */
.tech8-bg-icon {
  position: absolute;
  right: -45px;
  top: 75%;
  width: 125px;
  height: auto;

  opacity: 0.08;
  z-index: 0;
  pointer-events: none;

  filter: brightness(0) invert(1);

  animation: spin 20s linear infinite;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* keep content above the image */
.tech8 > *:not(.tech8-bg-icon) {
  position: relative;
  z-index: 2;
}
.tech9-flex {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}
/* Icon */
.tech9 {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;

  /* smooth both ways */
  transition: transform 0.2s ease;
}

.tech9:hover {
  transform: rotate(360deg);
}

.tech9 img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* Icon colors */
.tech10,
.tech14,
.tech15 {
  background: linear-gradient(135deg, #5b6cdb, #7c5cdb);
  box-shadow: 0 8px 16px rgba(91, 108, 219, 0.3);
}

.tech16 {
  background: linear-gradient(135deg, #9b5de5, #c77dff);
  box-shadow: 0 8px 16px rgba(155, 93, 229, 0.3);
}

.tech17,
.tech18 {
  background: linear-gradient(135deg, #c756cc, #d946a6);
  box-shadow: 0 8px 16px rgba(199, 86, 204, 0.3);
}

/* Title */
.tech11 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Tags */
.tech12 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  overflow: visible;
}

.tech13 {
  display: inline-block;
  padding: 8px 16px;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  font-size: 14px;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.tech13:hover {
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--primary-blue) 15%, transparent),
    color-mix(in srgb, var(--primary-pink) 15%, transparent)
  );
  transform: scale(1.08);
  z-index: 10;
  border: 1px solid var(--primary-pink);
}

/* Responsive */
@media (max-width: 768px) {
  .tech5 {
    font-size: 36px;
  }
  .tech7 {
    grid-template-columns: 1fr;
  }
  .tech8 {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .tech1 {
    padding: 60px 16px;
  }
  .tech5 {
    font-size: 28px;
  }
}
/* new tech section ended  */

/*  */
/* ===============================
   BACKGROUND ICON ANIMATIONS
   =============================== */

.bg-icons {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

/* Icon container */
.icon-orbit {
  position: relative;
  width: 120px;
  height: 120px;
  top: 20%;
  left: 10%;
  animation: rotate360 18s linear infinite;
}

.icon-orbit.delay1 {
  top: 57%;
  left: 15%;
  animation-duration: 22s;
}

.icon-orbit.delay2 {
  top: 35%;
  left: 75%;
  animation-duration: 26s;
}
.icon-orbit.delay3 {
  top: -15%;
  left: 45%;
  animation-duration: 22s;
}
.icon-orbit.delay4 {
  top: 13%;
  left: 50%;
  animation-duration: 22s;
}
.icon-orbit.delay5 {
  top: -35%;
  left: 83%;
  animation-duration: 22s;
}

.delay2,
.delay4,
.delay5 {
  filter: brightness(0) saturate(100%) invert(27%) sepia(90%) saturate(7000%)
    hue-rotate(315deg) brightness(95%) contrast(105%);
}
/* Main icon circle */
.main-icon {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 40px;
  height: auto;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid rgba(0, 170, 255, 0.6);
  background: rgba(255, 255, 255, 0.03);
  box-shadow:
    inset 0 0 10px rgba(255, 255, 255, 0.15),
    0 0 18px rgba(0, 170, 255, 0.35);
  z-index: 2;
}
.icon-white {
  filter: brightness(0) saturate(100%) invert(45%) sepia(85%) saturate(4200%)
    hue-rotate(185deg) brightness(100%) contrast(105%);
}

/* flaoting card */
.blob-section {
  position: relative;
}
